diff --git a/Changelog.draft.rst b/Changelog.draft.rst index 7ced439..ae84931 100644 --- a/Changelog.draft.rst +++ b/Changelog.draft.rst @@ -15,7 +15,9 @@ New Features Changes ------- - + +* Indicate progress when copying many messages (slightly change log format) + Bug Fixes --------- diff --git a/offlineimap/accounts.py b/offlineimap/accounts.py index d28bd34..6ab451f 100644 --- a/offlineimap/accounts.py +++ b/offlineimap/accounts.py @@ -281,7 +281,7 @@ class SyncableAccount(Account): thread = InstanceLimitedThread(\ instancename = 'FOLDER_' + self.remoterepos.getname(), target = syncfolder, - name = "Folder sync [%s]" % self, + name = "Folder %s [acc: %s]" % (remotefolder, self), args = (self.name, remoterepos, remotefolder, localrepos, statusrepos, quick)) thread.setDaemon(1)