Submitter | phabricator |
---|---|
Date | May 8, 2018, 1:34 p.m. |
Message ID | <4ea2a3f60542eeaa14a4111fdef6b589@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/31354/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/mercurial/util.py b/mercurial/util.py --- a/mercurial/util.py +++ b/mercurial/util.py @@ -2717,7 +2717,7 @@ 'query', 'fragment'): v = getattr(self, a) if v is not None: - attrs.append('%s: %r' % (a, v)) + attrs.append('%s: %r' % (a, pycompat.bytestr(v))) return '<url %s>' % ', '.join(attrs) def __bytes__(self):