##// END OF EJS Templates
cmdutil: allow native string as input to check_at_most_one_arg()...
Martin von Zweigbergk -
r44395:6c810827 default
parent child Browse files
Show More
@@ -267,7 +267,7 b' def check_at_most_one_arg(opts, *args):'
267 267 """
268 268
269 269 def to_display(name):
270 return name.replace(b'_', b'-')
270 return pycompat.sysbytes(name).replace(b'_', b'-')
271 271
272 272 previous = None
273 273 for x in args:
General Comments 0
You need to be logged in to leave comments. Login now