diff -r 765a9c299c44 -r 29adf0a087a1 hgext/githelp.py --- a/hgext/githelp.py Tue Dec 03 17:17:57 2019 -0800 +++ b/hgext/githelp.py Thu Dec 05 11:15:19 2019 -0500 @@ -115,7 +115,7 @@ args = list([convert(x) for x in args]) opts = dict( [ - (k, convert(v)) if isinstance(v, str) else (k, v) + (k, convert(v)) if isinstance(v, bytes) else (k, v) for k, v in pycompat.iteritems(opts) ] )