summaryrefslogtreecommitdiffstats
path: root/Lib/urllib2.py
diff options
context:
space:
mode:
authorSenthil Kumaran <orsenthil@gmail.com>2010-05-08 03:11:50 (GMT)
committerSenthil Kumaran <orsenthil@gmail.com>2010-05-08 03:11:50 (GMT)
commit6057ba1f97ea19c484b03d5dd2f431e7767fefd1 (patch)
treeff9050c2a01c8d480a583dedc083cdb44dea728a /Lib/urllib2.py
parentbadc709847379cf27785af2d4c1a05c4e27010c2 (diff)
downloadcpython-6057ba1f97ea19c484b03d5dd2f431e7767fefd1.zip
cpython-6057ba1f97ea19c484b03d5dd2f431e7767fefd1.tar.gz
cpython-6057ba1f97ea19c484b03d5dd2f431e7767fefd1.tar.bz2
Fix Issue8656 - urllib2 mangles file://-scheme URLs
Diffstat (limited to 'Lib/urllib2.py')
-rw-r--r--Lib/urllib2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/urllib2.py b/Lib/urllib2.py
index 122f777..84f7833 100644
--- a/Lib/urllib2.py
+++ b/Lib/urllib2.py
@@ -1291,7 +1291,7 @@ class FileHandler(BaseHandler):
if not host or \
(not port and socket.gethostbyname(host) in self.get_names()):
return addinfourl(open(localfile, 'rb'),
- headers, 'file:'+file)
+ headers, 'file://'+ host + file)
except OSError, msg:
# urllib2 users shouldn't expect OSErrors coming from urlopen()
raise URLError(msg)