bundle2: obtain repr() of exception in a python3-safe way
This was exposed by other problems in bundle generation, but I'm not
sure how to test it for now.
--- a/mercurial/bundle2.py Mon Jul 24 11:28:40 2017 -0400
+++ b/mercurial/bundle2.py Mon Jul 24 11:19:11 2017 -0400
@@ -1045,11 +1045,12 @@
ui.debug('bundle2-generatorexit\n')
raise
except BaseException as exc:
+ bexc = pycompat.bytestr(exc)
# backup exception data for later
ui.debug('bundle2-input-stream-interrupt: encoding exception %s'
- % exc)
+ % bexc)
tb = sys.exc_info()[2]
- msg = 'unexpected error: %s' % exc
+ msg = 'unexpected error: %s' % bexc
interpart = bundlepart('error:abort', [('message', msg)],
mandatory=False)
interpart.id = 0