contrib/simplemerge
branchstable
changeset 43367 3c2799cbace4
parent 40265 d6b7c4e77bb4
child 43659 99e231afc29c
--- a/contrib/simplemerge	Fri Nov 01 17:31:47 2019 +0100
+++ b/contrib/simplemerge	Fri Nov 01 17:23:02 2019 +0100
@@ -18,6 +18,7 @@
 )
 from mercurial.utils import (
     procutil,
+    stringutil
 )
 
 options = [(b'L', b'label', [], _(b'labels to use on conflict markers')),
@@ -75,8 +76,7 @@
                                      context.arbitraryfilectx(other),
                                      **pycompat.strkwargs(opts)))
 except ParseError as e:
-    if pycompat.ispy3:
-        e = str(e).encode('utf8')
+    e = stringutil.forcebytestr(e)
     pycompat.stdout.write(b"%s: %s\n" % (sys.argv[0].encode('utf8'), e))
     showhelp()
     sys.exit(1)