From cee1bf15cb4300a4c6c4d8eae04598e44504b2e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rog=C3=A9rio=20Brito?= Date: Thu, 11 Jun 2015 10:53:32 -0300 Subject: [PATCH] coursera/cookies: Document more the problems with urllib3/requests. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- coursera/cookies.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coursera/cookies.py b/coursera/cookies.py index 1ff8311..4db1cd7 100644 --- a/coursera/cookies.py +++ b/coursera/cookies.py @@ -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