summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Petrov <andrey.petrov@shazow.net>2014-06-25 15:18:50 -0700
committerAndrey Petrov <andrey.petrov@shazow.net>2014-06-25 15:18:50 -0700
commitc01bb77480625994ef3347a55d50b41c80611716 (patch)
tree9c5cba72937e13e03296259d071ae52a37b99a72
parentb348a1ad687c0514d7024db98f9ef5a5b7be8a93 (diff)
downloadurllib3-c01bb77480625994ef3347a55d50b41c80611716.tar.gz
Fiddling with coverage.
-rw-r--r--urllib3/response.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/urllib3/response.py b/urllib3/response.py
index 843fa635..044243bb 100644
--- a/urllib3/response.py
+++ b/urllib3/response.py
@@ -205,7 +205,7 @@ class HTTPResponse(io.IOBase):
except BaseSSLError as e:
# FIXME: Is there a better way to differentiate between SSLErrors?
- if not 'read operation timed out' in e.message: # Defensive
+ if not 'read operation timed out' in e.message: # Defensive:
# This shouldn't happen but just in case we're missing an edge
# case, let's avoid swallowing SSL errors.
raise