Submitter | phabricator |
---|---|
Date | April 12, 2018, 3:08 p.m. |
Message ID | <d9f93b54fb705f4a0ad7eec33eda3e81@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/30796/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/mercurial/subrepoutil.py b/mercurial/subrepoutil.py --- a/mercurial/subrepoutil.py +++ b/mercurial/subrepoutil.py @@ -106,7 +106,7 @@ parent = util.url(parent) parent.path = posixpath.join(parent.path or '', src) parent.path = posixpath.normpath(parent.path) - joined = str(parent) + joined = bytes(parent) # Remap the full joined path and use it if it changes, # else remap the original source. remapped = remap(joined)