Submitter | phabricator |
---|---|
Date | Dec. 2, 2019, 9:56 p.m. |
Message ID | <e35280757337afb2a293b7e5fca6b75b@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/43573/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/hgext/githelp.py b/hgext/githelp.py --- a/hgext/githelp.py +++ b/hgext/githelp.py @@ -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) ] )