summaryrefslogtreecommitdiff
path: root/packages/python/python-2.5.2/06-fix-urllib-exception.patch
blob: d096ee940219e193669b904a39e383f69f22a75c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
Index: python/Lib/urllib.py
===================================================================
--- python.orig/Lib/urllib.py	2007-03-06 17:16:49.000000000 -0300
+++ python/Lib/urllib.py	2007-03-06 17:17:05.000000000 -0300
@@ -358,7 +358,7 @@
         """Default error handler: close the connection and raise IOError."""
         void = fp.read()
         fp.close()
-        raise IOError, ('http error', errcode, errmsg, headers)
+        raise IOError, ('http error', errcode, errmsg)
 
     if hasattr(socket, "ssl"):
         def open_https(self, url, data=None):