summaryrefslogtreecommitdiff
path: root/alot/account.py
diff options
context:
space:
mode:
Diffstat (limited to 'alot/account.py')
-rw-r--r--alot/account.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/alot/account.py b/alot/account.py
index ddc6cad4..10602abe 100644
--- a/alot/account.py
+++ b/alot/account.py
@@ -166,7 +166,8 @@ class SendmailAccount(Account):
def errb(failure):
termobj = failure.value
- errmsg = '%s failed with code %s:\n%s' % (self.cmd, termobj.exitCode, failure.value.stderr.rstrip())
+ errmsg = '%s failed with code %s:\n%s' % \
+ (self.cmd, termobj.exitCode, failure.value.stderr.rstrip())
logging.error(errmsg)
logging.error(failure.getTraceback())
logging.error(failure.value.stderr)