From e01968973decba461678836856d3ea4862885202 Mon Sep 17 00:00:00 2001 From: Sebastian Spaeth Date: Wed, 27 Apr 2011 12:15:52 +0200 Subject: [PATCH] Use "%s" % account rather than account.name uncritical patch, but we can make the code a bit shorter so why not. Signed-off-by: Sebastian Spaeth Signed-off-by: Nicolas Sebrecht --- offlineimap/accounts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/offlineimap/accounts.py b/offlineimap/accounts.py index a22bf7f..f94a55c 100644 --- a/offlineimap/accounts.py +++ b/offlineimap/accounts.py @@ -256,7 +256,7 @@ class SyncableAccount(Account): thread = InstanceLimitedThread(\ instancename = 'FOLDER_' + self.remoterepos.getname(), target = syncfolder, - name = "Folder sync [%s]" % self.name, + name = "Folder sync [%s]" % self, args = (self.name, remoterepos, remotefolder, localrepos, statusrepos, quick)) thread.setDaemon(1)