#20: Fix for traceback when remote_path option is missing.
This commit is contained in:
parent
17e9f21fb9
commit
ed0127df91
3 changed files with 6 additions and 2 deletions
4
NEWS
4
NEWS
|
@ -1,3 +1,7 @@
|
|||
1.0.2
|
||||
|
||||
* #20: Fix for traceback when remote_path option is missing.
|
||||
|
||||
1.0.1
|
||||
|
||||
* #19: Support for Borg's --remote-path option to use an alternate Borg
|
||||
|
|
|
@ -45,7 +45,7 @@ def main():
|
|||
args = parse_arguments(*sys.argv[1:])
|
||||
config = parse_configuration(args.config_filename, CONFIG_FORMAT)
|
||||
repository = config.location['repository']
|
||||
remote_path = config.location['remote_path']
|
||||
remote_path = config.location.get('remote_path')
|
||||
|
||||
borg.initialize(config.storage)
|
||||
borg.create_archive(
|
||||
|
|
2
setup.py
2
setup.py
|
@ -1,7 +1,7 @@
|
|||
from setuptools import setup, find_packages
|
||||
|
||||
|
||||
VERSION = '1.0.1'
|
||||
VERSION = '1.0.2'
|
||||
|
||||
|
||||
setup(
|
||||
|
|
Loading…
Reference in a new issue