Fix merge glitch that let test_urllib fail.

This commit is contained in:
Georg Brandl 2008-01-26 11:23:13 +00:00
parent 95ba469626
commit e3777b4e92

View file

@ -360,7 +360,8 @@ def _open_generic_http(self, connection_factory, url, data):
# According to RFC 2616, "2xx" code indicates that the client's
# request was successfully received, understood, and accepted.
if (200 <= response.status < 300):
return addinfourl(response.fp, response.msg, "http:" + url)
return addinfourl(response.fp, response.msg, "http:" + url,
response.status)
else:
return self.http_error(
url, response.fp,