diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-09-04 06:37:28 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-09-04 06:37:28 (GMT) |
commit | 83e7ccc9fdc9a5e1220fb14a173ed8f391380966 (patch) | |
tree | 663ed709ea31c2758739e59fefabab6e107951ff /Lib/test/test_urllib2.py | |
parent | bc1c7a085449302edcef3e7c2faae2433a020e39 (diff) | |
download | cpython-83e7ccc9fdc9a5e1220fb14a173ed8f391380966.zip cpython-83e7ccc9fdc9a5e1220fb14a173ed8f391380966.tar.gz cpython-83e7ccc9fdc9a5e1220fb14a173ed8f391380966.tar.bz2 |
Whitespace normalization.
Diffstat (limited to 'Lib/test/test_urllib2.py')
-rw-r--r-- | Lib/test/test_urllib2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_urllib2.py b/Lib/test/test_urllib2.py index 5b4c68c..129bf2c 100644 --- a/Lib/test/test_urllib2.py +++ b/Lib/test/test_urllib2.py @@ -18,7 +18,7 @@ if fname[1:2] == ":": # And more hacking to get it to work on MacOS. This assumes # urllib.pathname2url works, unfortunately... if os.name == 'mac': - fname = '/' + fname.replace(':', '/') + fname = '/' + fname.replace(':', '/') file_url = "file://%s" % fname f = urllib2.urlopen(file_url) |