Compare commits

..
5 Commits
5 changed files with 8 additions and 3 deletions
+1
View File
@@ -27,3 +27,4 @@ e58246fc92bb22c2b2fd8b86a1227de69d2d0315 0.1.4
28434dd0440cc8da44c2f3e9bd7e9402a59c3b40 github/master
dbc96d3f83bd5570b6826537616d4160b3374836 0.1.8
0e1fbee9358de4f062fa9539e1355db83db70caa 1.0.0
de2d7721cdec93a52d20222a9ddd579ed93c1017 1.0.1
+4
View File
@@ -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
+1 -1
View File
@@ -146,7 +146,7 @@ backups.
## Issues and feedback
Got an issue or an idea for a feature enhancement? Check out the [borgmatic
issue tracker](https://tree.taiga.io/project/witten-borgmatic/issues). In
issue tracker](https://tree.taiga.io/project/witten-borgmatic/issues?page=1&status=399951,399952,399955). In
order to create a new issue or comment on an issue, you'll need to [login
first](https://tree.taiga.io/login).
+1 -1
View File
@@ -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(
+1 -1
View File
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages
VERSION = '1.0.1'
VERSION = '1.0.2'
setup(