##// END OF EJS Templates
py3: use pycompat.bytestr() where repr in involved...
Pulkit Goyal -
r37577:c4a0626f default
parent child Browse files
Show More
@@ -1164,7 +1164,7 b' class queue(object):'
1164 for c in ('#', ':', '\r', '\n'):
1164 for c in ('#', ':', '\r', '\n'):
1165 if c in name:
1165 if c in name:
1166 raise error.Abort(_('%r cannot be used in the name of a patch')
1166 raise error.Abort(_('%r cannot be used in the name of a patch')
1167 % c)
1167 % pycompat.bytestr(c))
1168
1168
1169 def checkpatchname(self, name, force=False):
1169 def checkpatchname(self, name, force=False):
1170 self.checkreservedname(name)
1170 self.checkreservedname(name)
General Comments 0
You need to be logged in to leave comments. Login now