Issue #20363. Fixed BytesWarning triggerred by test suite.

Patch by Berker Peksag.
This commit is contained in:
Serhiy Storchaka 2014-02-06 22:49:45 +02:00
parent 5e028ae09e
commit bc27a050a7
3 changed files with 4 additions and 4 deletions

View file

@ -300,5 +300,5 @@ Your selection [default 1]: ''', log.INFO)
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