Browse Source

typo in error catch

master
Holger Frey 5 years ago
parent
commit
5a4000ed05
  1. 2
      create_snapshot_backup.py

2
create_snapshot_backup.py

@ -48,7 +48,7 @@ def remote_call(arguments): @@ -48,7 +48,7 @@ def remote_call(arguments):
cmd.extend(arguments)
try:
result = call(cmd, as_text=True)
except CalledProcessError as e:
except subprocess.CalledProcessError as e:
print("STDERR:", e.stderr)
raise

Loading…
Cancel
Save