diff options
author | Kenneth Reitz <me@kennethreitz.org> | 2017-05-30 00:57:10 -0400 |
---|---|---|
committer | Kenneth Reitz <me@kennethreitz.org> | 2017-05-30 00:57:10 -0400 |
commit | a6ece592165f7dbaebefe9370d04a47377ce95ac (patch) | |
tree | 015357d47dff2b51c066b1f732c4da96c42bdff0 | |
parent | 85aa6a9a0b504e0c16ee372d7978f161ef3859f1 (diff) | |
download | python-requests-urllib3-dev.tar.gz |
fix bugurllib3-dev
-rw-r--r-- | requests/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/requests/__init__.py b/requests/__init__.py index 445ac0aa..d7679225 100644 --- a/requests/__init__.py +++ b/requests/__init__.py @@ -42,7 +42,7 @@ is at <http://python-requests.org>. # Check urllib3 for compatibility. import urllib3 -if urllib3.__version__ not 'dev': +if urllib3.__version__ != 'dev': urllib3_version = urllib3.__version__.split('.') # Sometimes, urllib3 only reports its version as 16.1. if len(urllib3_version) == 2: |