coursera/cookies: Document more the problems with urllib3/requests.

More information about the problems with older Debian/Ubuntu versions of
python-requests (and breakage of other systems) can be found at:

https://bugs.debian.org/767445
https://bugs.debian.org/769047
https://bugs.debian.org/769496
https://github.com/docker/docker-py/issues/377
https://lists.debian.org/debian-python/2014/11/msg00026.html

Signed-off-by: Rogério Brito <rbrito@ime.usp.br>
This commit is contained in:
Rogério Brito 2015-06-11 10:53:32 -03:00
parent 0cc41927c4
commit cee1bf15cb

View file

@ -11,7 +11,7 @@ import ssl
import requests
from requests.adapters import HTTPAdapter
try:
try: # Workaround for broken Debian/Ubuntu packages? (See issue #331)
from requests.packages.urllib3.poolmanager import PoolManager
except ImportError:
from urllib3.poolmanager import PoolManager