[Python-checkins] r84611 - python/branches/py3k/Lib/distutils/command/upload.py

eric.araujo python-checkins at python.org
Wed Sep 8 01:08:57 CEST 2010


Author: eric.araujo
Date: Wed Sep  8 01:08:57 2010
New Revision: 84611

Log:
Fix incorrect use of Command.announce (#9199)


Modified:
   python/branches/py3k/Lib/distutils/command/upload.py

Modified: python/branches/py3k/Lib/distutils/command/upload.py
==============================================================================
--- python/branches/py3k/Lib/distutils/command/upload.py	(original)
+++ python/branches/py3k/Lib/distutils/command/upload.py	Wed Sep  8 01:08:57 2010
@@ -194,4 +194,5 @@
             self.announce('Upload failed (%s): %s' % (r.status, r.reason),
                           log.ERROR)
         if self.show_response:
-            self.announce('-'*75, r.read(), '-'*75)
+            msg = ''.join('-' * 75, r.read(), '-' * 75)
+            self.announce(msg, log.INFO)


More information about the Python-checkins mailing list