diff options
author | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-03-31 20:53:55 (GMT) |
---|---|---|
committer | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-03-31 20:53:55 (GMT) |
commit | e899b711df4754daec2eec88a1eeb9c9dfecc7c6 (patch) | |
tree | 12d8bcbd3357c4da9b152aebd77cb594ad83169a /Lib/distutils/command | |
parent | ca2b8d283ab133d5587f4faaff81a16a2a1a74ca (diff) | |
download | cpython-e899b711df4754daec2eec88a1eeb9c9dfecc7c6.zip cpython-e899b711df4754daec2eec88a1eeb9c9dfecc7c6.tar.gz cpython-e899b711df4754daec2eec88a1eeb9c9dfecc7c6.tar.bz2 |
more tests for the upload command
Diffstat (limited to 'Lib/distutils/command')
-rw-r--r-- | Lib/distutils/command/upload.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/upload.py b/Lib/distutils/command/upload.py index df82e4c..74b0628 100644 --- a/Lib/distutils/command/upload.py +++ b/Lib/distutils/command/upload.py @@ -192,4 +192,4 @@ class upload(PyPIRCCommand): self.announce('Upload failed (%s): %s' % (r.status, r.reason), log.ERROR) if self.show_response: - print '-'*75, r.read(), '-'*75 + self.announce('-'*75, r.read(), '-'*75) |