summaryrefslogtreecommitdiff
path: root/alot/account.py
diff options
context:
space:
mode:
authorBenjamin <fagga@gmx.de>2012-10-04 17:33:41 +0200
committerBenjamin <fagga@gmx.de>2012-10-04 17:33:41 +0200
commitbd6ef9fe8f5fd266ebacb94ab2667b35ba1c40df (patch)
tree9c56202cd78aecbaf1f5d1a379ed28dc57127325 /alot/account.py
parent7cd10af0caf32be9141ec1e34f8d6ad76a4b23db (diff)
Fix long line in previous commit
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)