Submitter | phabricator |
---|---|
Date | April 5, 2018, 12:31 p.m. |
Message ID | <differential-rev-PHID-DREV-ke423tla47i7tbstlbl4-req@phab.mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/30355/ |
State | Superseded |
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')),