summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Burke <kevin@twilio.com>2013-09-14 11:47:24 -0700
committerKevin Burke <kevin@twilio.com>2013-09-14 11:47:24 -0700
commitd3f76171f491d9cfc83d2c3f01bb8c66a34eea58 (patch)
tree8cf31c0cb76755f039d75acf98e1603ce2f345d6
parent4ffbdc60e005000d0af08555833c99287a326285 (diff)
downloadurllib3-d3f76171f491d9cfc83d2c3f01bb8c66a34eea58.tar.gz
fix if spacing
-rw-r--r--urllib3/connectionpool.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/urllib3/connectionpool.py b/urllib3/connectionpool.py
index ff855cd1..691d4e23 100644
--- a/urllib3/connectionpool.py
+++ b/urllib3/connectionpool.py
@@ -374,8 +374,8 @@ class HTTPConnectionPool(ConnectionPool, RequestMethods):
log.debug("Setting read timeout to %s" % read_timeout)
# App Engine doesn't have a sock attr
if hasattr(conn, 'sock') and \
- read_timeout is not None and \
- read_timeout is not Timeout.DEFAULT_TIMEOUT:
+ read_timeout is not None and \
+ read_timeout is not Timeout.DEFAULT_TIMEOUT:
# In Python 3 socket.py will catch EAGAIN and return None when you
# try and read into the file pointer created by http.client, which
# instead raises a BadStatusLine exception. Instead of catching