commit | 0240c924dbd17b01dc739f20c39247637599f330 | [log] [tgz] |
---|---|---|
author | Senthil Kumaran <orsenthil@gmail.com> | Mon Oct 05 04:13:01 2009 +0000 |
committer | Senthil Kumaran <orsenthil@gmail.com> | Mon Oct 05 04:13:01 2009 +0000 |
tree | 443b0f5a998708cac9144857715ef9e775b75c55 | |
parent | 441dad8145686a9438ef1a30da64e589af2989ed [diff] [blame] |
merge r72343. Fix for issue7043
diff --git a/Lib/nturl2path.py b/Lib/nturl2path.py index 31064044..29ea80f 100644 --- a/Lib/nturl2path.py +++ b/Lib/nturl2path.py
@@ -56,7 +56,7 @@ drive = urllib.quote(comp[0].upper()) components = comp[1].split('\\') - path = '///' + drive + '|' + path = '///' + drive + ':' for comp in components: if comp: path = path + '/' + urllib.quote(comp)