Python 3 compatible exceptions.
This commit is contained in:
parent
65c837c828
commit
45c6541266
1 changed files with 1 additions and 1 deletions
|
@ -33,6 +33,6 @@ def main():
|
||||||
|
|
||||||
create_archive(args.excludes_filename, args.verbose, *location_config)
|
create_archive(args.excludes_filename, args.verbose, *location_config)
|
||||||
prune_archives(location_config.repository, args.verbose, *retention_config)
|
prune_archives(location_config.repository, args.verbose, *retention_config)
|
||||||
except (ValueError, CalledProcessError), error:
|
except (ValueError, CalledProcessError) as error:
|
||||||
print(error, file=sys.stderr)
|
print(error, file=sys.stderr)
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
Loading…
Reference in a new issue