[Python-checkins] r75253 - python/branches/release26-maint/Lib/nturl2path.py

senthil.kumaran python-checkins at python.org
Mon Oct 5 06:13:03 CEST 2009


Author: senthil.kumaran
Date: Mon Oct  5 06:13:01 2009
New Revision: 75253

Log:
merge r72343. Fix for issue7043

Modified:
   python/branches/release26-maint/Lib/nturl2path.py

Modified: python/branches/release26-maint/Lib/nturl2path.py
==============================================================================
--- python/branches/release26-maint/Lib/nturl2path.py	(original)
+++ python/branches/release26-maint/Lib/nturl2path.py	Mon Oct  5 06:13:01 2009
@@ -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)


More information about the Python-checkins mailing list