Commit 535c5245 authored by Jack Jansen's avatar Jack Jansen

A quick hack to make the test pass on the Mac (similar to the quick hack

to make it pass on Windows:-).
parent 80ea40d8
......@@ -15,6 +15,10 @@ else:
fname = os.path.abspath(urllib2.__file__).replace('\\', '/')
if fname[1:2] == ":":
fname = fname[2:]
# And more hacking to get it to work on MacOS. This assumes
# urllib.pathname2url works, unfortunately...
if os.name == 'mac':
fname = '/' + fname.replace(':', '/')
file_url = "file://%s" % fname
f = urllib2.urlopen(file_url)
......
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