Kaydet (Commit) 0240c924 authored tarafından Senthil Kumaran's avatar Senthil Kumaran

merge r72343. Fix for issue7043

üst 441dad81
...@@ -56,7 +56,7 @@ def pathname2url(p): ...@@ -56,7 +56,7 @@ def pathname2url(p):
drive = urllib.quote(comp[0].upper()) drive = urllib.quote(comp[0].upper())
components = comp[1].split('\\') components = comp[1].split('\\')
path = '///' + drive + '|' path = '///' + drive + ':'
for comp in components: for comp in components:
if comp: if comp:
path = path + '/' + urllib.quote(comp) path = path + '/' + urllib.quote(comp)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment