diff hgext/histedit.py @ 43793:29adf0a087a1

merge with stable
author Augie Fackler <augie@google.com>
date Thu, 05 Dec 2019 11:15:19 -0500
parents bde66eb4051d 40db695040eb
children bde97bee321f
line wrap: on
line diff
--- 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():