| Index: third_party/requests/__init__.py
|
| diff --git a/third_party/requests/__init__.py b/third_party/requests/__init__.py
|
| index 1af8d8ed2e565cb8eb25ea31c79dfe4f803db2fc..837f0df9a4a6dac12916e1ec753c4acbd3f0ecc8 100644
|
| --- a/third_party/requests/__init__.py
|
| +++ b/third_party/requests/__init__.py
|
| @@ -42,15 +42,15 @@ is at <http://python-requests.org>.
|
| """
|
|
|
| __title__ = 'requests'
|
| -__version__ = '1.2.3'
|
| -__build__ = 0x010203
|
| +__version__ = '2.0.0'
|
| +__build__ = 0x020000
|
| __author__ = 'Kenneth Reitz'
|
| __license__ = 'Apache 2.0'
|
| __copyright__ = 'Copyright 2013 Kenneth Reitz'
|
|
|
| # Attempt to enable urllib3's SNI support, if possible
|
| try:
|
| - from requests.packages.urllib3.contrib import pyopenssl
|
| + from .packages.urllib3.contrib import pyopenssl
|
| pyopenssl.inject_into_urllib3()
|
| except ImportError:
|
| pass
|
|
|