[PATCH 06/17] Merge AccountfooMixing with SyncableAccount class
Sebastian Spaeth
Sebastian at SSpaeth.de
Mon Nov 29 16:02:14 GMT 2010
It was never used on its own and we can simply use the SyncableAccount class for that purpose, so merge the methods directly in there.
Signed-off-by: Sebastian Spaeth <Sebastian at SSpaeth.de>
---
offlineimap/accounts.py | 13 +++++++++----
1 files changed, 9 insertions(+), 4 deletions(-)
diff --git a/offlineimap/accounts.py b/offlineimap/accounts.py
index 7c52ab0..b4dd135 100644
--- a/offlineimap/accounts.py
+++ b/offlineimap/accounts.py
@@ -166,7 +166,12 @@ class Account(CustomConfig.ConfigHelperMixin):
item.stopkeepalive()
return sleepresult
-class AccountSynchronizationMixin:
+
+class SyncableAccount(Account):
+ """A syncable IMAP account.
+
+ Derives from class:`Account`."""
+
def syncrunner(self, siglistener):
self.ui.registerthread(self.name)
self.ui.acct(self.name)
@@ -281,12 +286,12 @@ class AccountSynchronizationMixin:
self.ui.callhook("Hook return code: %d" % p.returncode)
except:
self.ui.warn("Exception occured while calling hook")
-
-class SyncableAccount(Account, AccountSynchronizationMixin):
- pass
+
def syncfolder(accountname, remoterepos, remotefolder, localrepos,
statusrepos, quick):
+ """This function is called as target for the
+ InstanceLimitedThread invokation in SyncableAccount."""
global mailboxes
ui = UIBase.getglobalui()
ui.registerthread(accountname)
--
1.7.1
More information about the OfflineIMAP-project
mailing list