From 46f9aa44a9b3e1fa5c597d012a55e8330fc4180f Mon Sep 17 00:00:00 2001 From: Nikolaus Schulz Date: Thu, 2 Nov 2006 05:36:17 +0000 Subject: [PATCH] Split the final stats message in two lines, because it might otherwise linewrap. --- archivemail.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archivemail.py b/archivemail.py index c3049f1..babdc66 100755 --- a/archivemail.py +++ b/archivemail.py @@ -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)