🚧 manipulate sys.path to prefer vendor urllib3

This commit is contained in:
Jannes Höke 2017-03-09 23:29:15 +01:00
parent 1d4464ddbd
commit 2a1d40bd28

View file

@ -19,6 +19,10 @@
"""A library that provides a Python interface to the Telegram Bot API"""
from sys import version_info
import sys
import os
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'vendor', 'urllib3'))
from .base import TelegramObject
from .user import User