make UI output show local AND remote dirs involved

This commit is contained in:
Musashi69 2018-02-24 00:29:44 +01:00 committed by GitHub
parent 67d35dbbcb
commit 7b64355686
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -396,9 +396,9 @@ class UIBase(object):
def copyingmessage(self, uid, num, num_to_copy, src, destfolder):
"""Output a log line stating which message we copy."""
self.logger.info("Copy message UID %s (%d/%d) %s:%s -> %s"% (
self.logger.info("Copy message UID %s (%d/%d) %s:%s -> %s:%s"% (
uid, num, num_to_copy, src.repository, src,
destfolder.repository))
destfolder.repository, destfolder))
def deletingmessages(self, uidlist, destlist):
ds = self.folderlist(destlist)