Submitter | phabricator |
---|---|
Date | March 10, 2019, 1:50 a.m. |
Message ID | <ebd254bf72e79ad784c2d57daeb077f7@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/39173/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/hgext/phabricator.py b/hgext/phabricator.py --- a/hgext/phabricator.py +++ b/hgext/phabricator.py @@ -218,7 +218,7 @@ body = sout.read() else: urlopener = urlmod.opener(repo.ui, authinfo) - request = util.urlreq.request(url, data=data) + request = util.urlreq.request(pycompat.strurl(url), data=data) with contextlib.closing(urlopener.open(request)) as rsp: body = rsp.read() repo.ui.debug(b'Conduit Response: %s\n' % body)