diff options
Diffstat (limited to 'Lib/urllib.py')
-rw-r--r-- | Lib/urllib.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/urllib.py b/Lib/urllib.py index ad0e72b768..c6751b8f23 100644 --- a/Lib/urllib.py +++ b/Lib/urllib.py @@ -342,7 +342,7 @@ class URLopener: 'got a bad status line', None) # According to RFC 2616, "2xx" code indicates that the client's # request was successfully received, understood, and accepted. - if not (200 <= errcode < 300): + if (200 <= errcode < 300): return addinfourl(fp, headers, "http:" + url) else: if data is None: @@ -437,7 +437,7 @@ class URLopener: 'got a bad status line', None) # According to RFC 2616, "2xx" code indicates that the client's # request was successfully received, understood, and accepted. - if not (200 <= errcode < 300): + if (200 <= errcode < 300): return addinfourl(fp, headers, "https:" + url) else: if data is None: |