Split the final stats message in two lines, because it might otherwise linewrap.

This commit is contained in:
Nikolaus Schulz 2006-11-02 05:36:17 +00:00
parent 810dea1bf5
commit 46f9aa44a9
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ class Stats:
action = "deleted"
if options.dry_run:
action = "I would have " + action
print "%s: %s %d of %d message(s) (%s of %s) in %.1f seconds" % \
print "%s:\n %s %d of %d message(s) (%s of %s) in %.1f seconds" % \
(self.__mailbox_name, action, self.__archived, self.__total,
nice_size_str(self.__archived_size),
nice_size_str(self.__total_size), time_seconds)