aboutsummaryrefslogtreecommitdiff
path: root/debian/patches/06_rely-on-six-to-import-httplib-or-http.client.patch
blob: 435b6bbc532eb142def564556c4b5d6895f4973c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
From 7db0aa9b18e70f43ef0bfcdec7f223e5b681aaf0 Mon Sep 17 00:00:00 2001
From: SVN-Git Migration <python-modules-team@lists.alioth.debian.org>
Date: Thu, 8 Oct 2015 13:19:52 -0700
Subject: Rely on six to import httplib or http.client.

Origin: https://github.com/shazow/urllib3/commit/f4eb94bc36277d5d584683a03fc9eb3950429a15

Patch-Name: 06_rely-on-six-to-import-httplib-or-http.client.patch
---
 urllib3/util/response.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/urllib3/util/response.py b/urllib3/util/response.py
index 2c1de15..6695809 100644
--- a/urllib3/util/response.py
+++ b/urllib3/util/response.py
@@ -1,4 +1,4 @@
-from ..packages.six.moves import http_client as httplib
+from six.moves import http_client as httplib
 
 from ..exceptions import HeaderParsingError