##// END OF EJS Templates
githelp: fix a `str` type conditional for py3...
Matt Harbison -
r44183:24d01892 stable
parent child Browse files
Show More
@@ -115,7 +115,7 b' def parseoptions(ui, cmdoptions, args):'
115 115 args = list([convert(x) for x in args])
116 116 opts = dict(
117 117 [
118 (k, convert(v)) if isinstance(v, str) else (k, v)
118 (k, convert(v)) if isinstance(v, bytes) else (k, v)
119 119 for k, v in pycompat.iteritems(opts)
120 120 ]
121 121 )
General Comments 0
You need to be logged in to leave comments. Login now