mirror of
https://github.com/coursera-dl/coursera-dl.git
synced 2026-07-25 20:03:53 +00:00
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:
parent
0cc41927c4
commit
cee1bf15cb
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue