##// END OF EJS Templates
py3: use bytes instead of str in isinstance()...
Pulkit Goyal -
r37539:2d00058a default
parent child Browse files
Show More
@@ -677,7 +677,7 b' class queue(object):'
677 677 write = self.ui.warn
678 678
679 679 if all_patches or self.ui.verbose:
680 if isinstance(idx, str):
680 if isinstance(idx, bytes):
681 681 idx = self.series.index(idx)
682 682 pushable, why = self.pushable(idx)
683 683 if all_patches and pushable:
General Comments 0
You need to be logged in to leave comments. Login now