From df28136bb3c0b0abc3d8604cd60e928cc955e803 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodolfo=20Garc=C3=ADa=20Pe=C3=B1as=20=28kix=29?= Date: Sun, 30 Aug 2020 18:19:05 +0200 Subject: [PATCH] accounts.py Removed extra spaces after equal I changed the intentation to join the equal with the quote. --- offlineimap/accounts.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/offlineimap/accounts.py b/offlineimap/accounts.py index 77d8f0e..6a7d867 100644 --- a/offlineimap/accounts.py +++ b/offlineimap/accounts.py @@ -303,8 +303,9 @@ class SyncableAccount(Account): raise self.ui.error(e, exc_info()[2]) except Exception as e: - self.ui.error(e, exc_info()[2], msg= - "While attempting to sync account '%s'" % self) + self.ui.error(e, exc_info()[2], + msg="While attempting to sync account '%s'" % + self) else: # After success sync, reset the looping counter to 3. if self.refreshperiod: