diff options
author | Nikolaus Schulz <microschulz@web.de> | 2006-11-02 05:36:17 +0000 |
---|---|---|
committer | Nikolaus Schulz <microschulz@web.de> | 2006-11-02 05:36:17 +0000 |
commit | 46f9aa44a9b3e1fa5c597d012a55e8330fc4180f (patch) | |
tree | d89b698ffb4672aeab09c1443624f214c61452ef | |
parent | 810dea1bf5edf7b48e2b81e6425747e1ecea9913 (diff) | |
download | archivemail-46f9aa44a9b3e1fa5c597d012a55e8330fc4180f.tar.gz archivemail-46f9aa44a9b3e1fa5c597d012a55e8330fc4180f.tar.bz2 archivemail-46f9aa44a9b3e1fa5c597d012a55e8330fc4180f.zip |
Split the final stats message in two lines, because it might otherwise linewrap.
-rwxr-xr-x | archivemail.py | 2 |
1 files changed, 1 insertions, 1 deletions
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) |