Fix for syntax error that occurred in Python 3.5 and below (#102).
This commit is contained in:
parent
eb2a4ff1f0
commit
695930a607
3 changed files with 5 additions and 2 deletions
3
NEWS
3
NEWS
|
@ -1,3 +1,6 @@
|
|||
1.2.9
|
||||
* #102: Fix for syntax error that occurred in Python 3.5 and below.
|
||||
|
||||
1.2.8
|
||||
* #73: Enable consistency checks for only certain repositories via "check_repositories" option in
|
||||
borgmatic's consistency configuration. Handy for large repositories that take forever to check.
|
||||
|
|
|
@ -189,7 +189,7 @@ def _run_commands_on_repository(
|
|||
remote_path,
|
||||
retention,
|
||||
storage,
|
||||
unexpanded_repository,
|
||||
unexpanded_repository
|
||||
): # pragma: no cover
|
||||
repository = os.path.expanduser(unexpanded_repository)
|
||||
dry_run_label = ' (dry run; not making any changes)' if args.dry_run else ''
|
||||
|
|
2
setup.py
2
setup.py
|
@ -1,7 +1,7 @@
|
|||
from setuptools import setup, find_packages
|
||||
|
||||
|
||||
VERSION = '1.2.8'
|
||||
VERSION = '1.2.9'
|
||||
|
||||
|
||||
setup(
|
||||
|
|
Loading…
Reference in a new issue