# HG changeset patch # User Yuya Nishihara # Date 1531043891 -32400 # Node ID 85c74c5a159038925c7d410c6b52b75601e0dafe # Parent 2834ac06d5a9be905ad811eca82c047a414af577 py3: drop b'' while formatting ResponseError diff -r 2834ac06d5a9 -r 85c74c5a1590 contrib/python3-whitelist --- a/contrib/python3-whitelist Sun Jul 08 18:52:28 2018 +0900 +++ b/contrib/python3-whitelist Sun Jul 08 18:58:11 2018 +0900 @@ -36,6 +36,7 @@ test-bundle-type.t test-bundle-vs-outgoing.t test-bundle.t +test-bundle2-exchange.t test-bundle2-multiple-changegroups.t test-bundle2-pushback.t test-cappedreader.py diff -r 2834ac06d5a9 -r 85c74c5a1590 mercurial/scmutil.py --- a/mercurial/scmutil.py Sun Jul 08 18:52:28 2018 +0900 +++ b/mercurial/scmutil.py Sun Jul 08 18:58:11 2018 +0900 @@ -201,7 +201,7 @@ elif not msg: ui.warn(_(" empty string\n")) else: - ui.warn("\n%r\n" % stringutil.ellipsis(msg)) + ui.warn("\n%r\n" % pycompat.bytestr(stringutil.ellipsis(msg))) except error.CensoredNodeError as inst: ui.warn(_("abort: file censored %s!\n") % inst) except error.RevlogError as inst: