1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-17 01:22:19 +03:00

Fix for Linux installations without urllib3

This commit is contained in:
Jonathan Harris 2017-05-07 23:57:39 +01:00
parent 6ed7947af3
commit 5f6eef6c9b

View File

@ -182,11 +182,9 @@ class Session:
self.session = None
# yuck suppress InsecurePlatformWarning under Python < 2.7.9 which lacks SNI support
try:
if sys.version_info < (2,7,9):
from requests.packages import urllib3
urllib3.disable_warnings()
except:
pass
if platform=='win32' and getattr(sys, 'frozen', False):
os.environ['REQUESTS_CA_BUNDLE'] = join(dirname(sys.executable), 'cacert.pem')