Submitter | phabricator |
---|---|
Date | April 5, 2018, 1:48 p.m. |
Message ID | <a47c320d3f3733a2be6e4f4856a95ccc@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/30374/ |
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 @@ -2864,7 +2864,7 @@ '''remove all authentication information from a url string''' u = url(u) u.user = u.passwd = None - return str(u) + return bytes(u) timecount = unitcountfn( (1, 1e3, _('%.0f s')),