New submission from Jon Perez <[EMAIL PROTECTED]>:
In http_response() in HTTPErrorProcessor in urllib2.py, the following line
code, msg, hdrs = response.code, response.msg, response.info()
results in an error because response.code is not a valid
attribute, changing it to response.status
New submission from Jon Perez <[EMAIL PROTECTED]>:
In http_response in HTTPErrorProcessor, the following line
code, msg, hdrs = response.code, response.msg, response.info()
results in an error because response.code is not a valid
attribute, changing it to response.status works, but is
th