summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDonald Stufft <donald@stufft.io>2016-11-03 08:39:28 -0400
committerGitHub <noreply@github.com>2016-11-03 08:39:28 -0400
commit921a1b4cb3d2fb49be8d7e23eb907e028ba0652d (patch)
treebc96f71448f0fa6a8cac4aa75f7192ea986b2df7
parent8c8293ec9bcdb86bd3b8620814eecf636e98227a (diff)
downloadpip-921a1b4cb3d2fb49be8d7e23eb907e028ba0652d.tar.gz
Fix an incorrect replacement for imports in html5lib (#4068)
-rw-r--r--pip/_vendor/html5lib/treewalkers/etree.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pip/_vendor/html5lib/treewalkers/etree.py b/pip/_vendor/html5lib/treewalkers/etree.py
index d9ae3cccd..bcf17d170 100644
--- a/pip/_vendor/html5lib/treewalkers/etree.py
+++ b/pip/_vendor/html5lib/treewalkers/etree.py
@@ -10,7 +10,7 @@ except ImportError:
import re
-from pip._vendor. import string_types
+from pip._vendor.six import string_types
from . import base
from .._utils import moduleFactoryFactory