From 89c705bb2656b8edf028ce569329a012b4515c3e Mon Sep 17 00:00:00 2001 From: Sebastian Spaeth Date: Fri, 16 Sep 2011 15:09:20 +0200 Subject: [PATCH] init.py: Import OfflineImapError The next commit will make use of OfflineImapError but is transient (the old-style lock). The commit is supposed to be reverted after a few releases. So add the new import in a separate commit, because we might need this even when reverting the commit. Signed-off-by: Sebastian Spaeth --- offlineimap/init.py | 1 + 1 file changed, 1 insertion(+) diff --git a/offlineimap/init.py b/offlineimap/init.py index f7b2eef..88baf9f 100644 --- a/offlineimap/init.py +++ b/offlineimap/init.py @@ -26,6 +26,7 @@ import logging from optparse import OptionParser import offlineimap from offlineimap import accounts, threadutil, syncmaster +from offlineimap.error import OfflineImapError from offlineimap.ui import UI_LIST, setglobalui, getglobalui from offlineimap.CustomConfig import CustomConfigParser