##// END OF EJS Templates
py3: use bytes() instead of str() on util.url()...
Pulkit Goyal -
r37604:b94fecf4 default
parent child Browse files
Show More
@@ -106,7 +106,7 b' def state(ctx, ui):'
106 parent = util.url(parent)
106 parent = util.url(parent)
107 parent.path = posixpath.join(parent.path or '', src)
107 parent.path = posixpath.join(parent.path or '', src)
108 parent.path = posixpath.normpath(parent.path)
108 parent.path = posixpath.normpath(parent.path)
109 joined = str(parent)
109 joined = bytes(parent)
110 # Remap the full joined path and use it if it changes,
110 # Remap the full joined path and use it if it changes,
111 # else remap the original source.
111 # else remap the original source.
112 remapped = remap(joined)
112 remapped = remap(joined)
General Comments 0
You need to be logged in to leave comments. Login now