From bd6ef9fe8f5fd266ebacb94ab2667b35ba1c40df Mon Sep 17 00:00:00 2001 From: Benjamin Date: Thu, 4 Oct 2012 17:33:41 +0200 Subject: Fix long line in previous commit --- alot/account.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) -- cgit v1.2.3