hgext/histedit.py
changeset 43793 29adf0a087a1
parent 43664 bde66eb4051d
parent 43744 40db695040eb
child 43933 bde97bee321f
--- a/hgext/histedit.py	Tue Dec 03 17:17:57 2019 -0800
+++ b/hgext/histedit.py	Thu Dec 05 11:15:19 2019 -0500
@@ -2603,7 +2603,7 @@
 
 
 def stripwrapper(orig, ui, repo, nodelist, *args, **kwargs):
-    if isinstance(nodelist, str):
+    if isinstance(nodelist, bytes):
         nodelist = [nodelist]
     state = histeditstate(repo)
     if state.inprogress():