scmutil: bytes-ify IOErrors before wrapping them in abort message
authorAugie Fackler <augie@google.com>
Sat, 17 Feb 2018 00:29:23 -0500
changeset 36295 2b00dda6dad9
parent 36294 c69e78ef2b54
child 36296 d3fa5e106e65
scmutil: bytes-ify IOErrors before wrapping them in abort message Differential Revision: https://phab.mercurial-scm.org/D2292
mercurial/scmutil.py
--- a/mercurial/scmutil.py	Sat Feb 17 13:55:12 2018 -0700
+++ b/mercurial/scmutil.py	Sat Feb 17 00:29:23 2018 -0500
@@ -215,7 +215,7 @@
             ui.warn(_("(is your Python install correct?)\n"))
     except IOError as inst:
         if util.safehasattr(inst, "code"):
-            ui.warn(_("abort: %s\n") % inst)
+            ui.warn(_("abort: %s\n") % util.forcebytestr(inst))
         elif util.safehasattr(inst, "reason"):
             try: # usually it is in the form (errno, strerror)
                 reason = inst.reason.args[1]