mirror of
https://github.com/python/cpython.git
synced 2025-08-15 06:10:47 +00:00
merge r72343. Fix for issue7043
This commit is contained in:
parent
441dad8145
commit
0240c924db
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ def pathname2url(p):
|
|||
|
||||
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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue