From 0454b51282efd92564b5e338e8a364be3054bf10 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 3 Apr 1998 15:57:58 +0000 Subject: Oops, pulled over by the tab police :-) --- Lib/urllib.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/Lib/urllib.py b/Lib/urllib.py index 735745d..dd0b8db 100644 --- a/Lib/urllib.py +++ b/Lib/urllib.py @@ -178,7 +178,7 @@ class URLopener: if not filename and (not type or type == 'file'): try: fp = self.open_local_file(url1) - hdrs = fp.info() + hdrs = fp.info() del fp return url2pathname(splithost(url1)[1]), hdrs except IOError, msg: @@ -187,14 +187,14 @@ class URLopener: headers = fp.info() if not filename: import tempfile - garbage, path = splittype(url) - print (garbage, path) - garbage, path = splithost(path or "") - print (garbage, path) - path, garbage = splitquery(path or "") - print (path, garbage) - path, garbage = splitattr(path or "") - print (path, garbage) + garbage, path = splittype(url) + print (garbage, path) + garbage, path = splithost(path or "") + print (garbage, path) + path, garbage = splitquery(path or "") + print (path, garbage) + path, garbage = splitattr(path or "") + print (path, garbage) suffix = os.path.splitext(path)[1] filename = tempfile.mktemp(suffix) self.__tempfiles.append(filename) -- cgit v0.12