commit | bc27a050a7bef228c5e125c4de938faef56533fd | [log] [tgz] |
---|---|---|
author | Serhiy Storchaka <storchaka@gmail.com> | Thu Feb 06 22:49:45 2014 +0200 |
committer | Serhiy Storchaka <storchaka@gmail.com> | Thu Feb 06 22:49:45 2014 +0200 |
tree | 6030a0c845f8cbc7d92abfbb3a303c82ed6d8173 | |
parent | 5e028ae09e3181a1bebc402a9a414b8a79845090 [diff] [blame] |
Issue #20363. Fixed BytesWarning triggerred by test suite. Patch by Berker Peksag.
diff --git a/Lib/distutils/command/register.py b/Lib/distutils/command/register.py index 55656c2..b49f86f 100644 --- a/Lib/distutils/command/register.py +++ b/Lib/distutils/command/register.py
@@ -300,5 +300,5 @@ result = 200, 'OK' if self.show_response: dashes = '-' * 75 - self.announce('%s%s%s' % (dashes, data, dashes)) + self.announce('%s%r%s' % (dashes, data, dashes)) return result