summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--obnamlib/app.py6
-rw-r--r--obnamlib/encryption.py2
2 files changed, 6 insertions, 2 deletions
diff --git a/obnamlib/app.py b/obnamlib/app.py
index 362ecf58..4505fc88 100644
--- a/obnamlib/app.py
+++ b/obnamlib/app.py
@@ -234,10 +234,14 @@ class App(cliapp.Application):
sys.stderr.write('ERROR: %s\n' % str(e))
sys.exit(1)
except obnamlib.StructuredError as e:
- logging.critical(str(e), exc_info=True)
+ logging.critical(self._indent_multiline(e.formatted()), exc_info=True)
sys.stderr.write('ERROR: %s\n' % e.formatted())
sys.exit(1)
+ def _indent_multiline(self, s):
+ lines = s.splitlines()
+ return ''.join([lines[0] + '\n'] + [' {}\n'.format(line) for line in lines[1:]])
+
def setup_ttystatus(self):
self.ts = ttystatus.TerminalStatus(period=0.1)
if self.settings['quiet']:
diff --git a/obnamlib/encryption.py b/obnamlib/encryption.py
index 35ac1da2..2dd12d3c 100644
--- a/obnamlib/encryption.py
+++ b/obnamlib/encryption.py
@@ -30,7 +30,7 @@ class EncryptionError(obnamlib.ObnamError):
class GpgError(EncryptionError):
- msg = ('gpg failed with exit code {returncode}:\n'
+ msg = ('gpg failed with exit code {returncode}\n'
'Command: {command}\n{stderr}')