[PATCH 5 of 6 py3] dispatch: cope with sys.version being unicode on Python 3

Augie Fackler raf at durin42.com
Mon Mar 6 18:23:09 EST 2017


# HG changeset patch
# User Augie Fackler <raf at durin42.com>
# Date 1488565790 18000
#      Fri Mar 03 13:29:50 2017 -0500
# Node ID c28e0b997db472d0286927234bf06cc9848b6ff7
# Parent  00547c2e1a71fc5d3efd13e5c766fda8bc398e6a
dispatch: cope with sys.version being unicode on Python 3

diff --git a/mercurial/dispatch.py b/mercurial/dispatch.py
--- a/mercurial/dispatch.py
+++ b/mercurial/dispatch.py
@@ -893,7 +893,12 @@ def _exceptionwarning(ui):
             bugtracker = _("https://mercurial-scm.org/wiki/BugTracker")
         warning = (_("** unknown exception encountered, "
                      "please report by visiting\n** ") + bugtracker + '\n')
-    warning += ((_("** Python %s\n") % sys.version.replace('\n', '')) +
+    if pycompat.ispy3:
+        sysversion = sys.version.encode(u'utf-8')
+    else:
+        sysversion = sys.version
+    sysversion = sysversion.replace('\n', '')
+    warning += ((_("** Python %s\n") % sysversion) +
                 (_("** Mercurial Distributed SCM (version %s)\n") %
                  util.version()) +
                 (_("** Extensions loaded: %s\n") %


More information about the Mercurial-devel mailing list