##// END OF EJS Templates
py3: drop b'' while formatting ResponseError
Yuya Nishihara -
r38624:85c74c5a default
parent child Browse files
Show More
@@ -36,6 +36,7 b' test-bundle-r.t'
36 test-bundle-type.t
36 test-bundle-type.t
37 test-bundle-vs-outgoing.t
37 test-bundle-vs-outgoing.t
38 test-bundle.t
38 test-bundle.t
39 test-bundle2-exchange.t
39 test-bundle2-multiple-changegroups.t
40 test-bundle2-multiple-changegroups.t
40 test-bundle2-pushback.t
41 test-bundle2-pushback.t
41 test-cappedreader.py
42 test-cappedreader.py
@@ -201,7 +201,7 b' def callcatch(ui, func):'
201 elif not msg:
201 elif not msg:
202 ui.warn(_(" empty string\n"))
202 ui.warn(_(" empty string\n"))
203 else:
203 else:
204 ui.warn("\n%r\n" % stringutil.ellipsis(msg))
204 ui.warn("\n%r\n" % pycompat.bytestr(stringutil.ellipsis(msg)))
205 except error.CensoredNodeError as inst:
205 except error.CensoredNodeError as inst:
206 ui.warn(_("abort: file censored %s!\n") % inst)
206 ui.warn(_("abort: file censored %s!\n") % inst)
207 except error.RevlogError as inst:
207 except error.RevlogError as inst:
General Comments 0
You need to be logged in to leave comments. Login now