win32mbcs: fix a `str` type conditional for py3 stable
authorMatt Harbison <matt_harbison@yahoo.com>
Sat, 30 Nov 2019 02:59:04 -0500
branchstable
changeset 43743 66210a20f727
parent 43742 6ff1a0d109c9
child 43744 40db695040eb
win32mbcs: fix a `str` type conditional for py3 Differential Revision: https://phab.mercurial-scm.org/D7535
hgext/win32mbcs.py
--- a/hgext/win32mbcs.py	Sat Nov 30 02:53:39 2019 -0500
+++ b/hgext/win32mbcs.py	Sat Nov 30 02:59:04 2019 -0500
@@ -77,7 +77,7 @@
 
 
 def decode(arg):
-    if isinstance(arg, str):
+    if isinstance(arg, bytes):
         uarg = arg.decode(_encoding)
         if arg == uarg.encode(_encoding):
             return uarg