diff options
author | scoder <stefan_ml@behnel.de> | 2017-04-30 09:09:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-30 09:09:46 +0200 |
commit | dd8f17c958b5af133c5f4fe623d682952313e7ea (patch) | |
tree | e5e11de6508cd67b3c223f1faa732d8d5300cf8c /buildlibxml.py | |
parent | a3f22e96674c0086f9270e86ab70af5e759295d5 (diff) | |
parent | d505128a2164a9efcfdc06320d9f40d7eb8077d2 (diff) | |
download | python-lxml-dd8f17c958b5af133c5f4fe623d682952313e7ea.tar.gz |
Merge pull request #245 from chrisgavin/unused-imports
Remove unused imports.
Diffstat (limited to 'buildlibxml.py')
-rw-r--r-- | buildlibxml.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/buildlibxml.py b/buildlibxml.py index bfc8b0cf..bd2aec18 100644 --- a/buildlibxml.py +++ b/buildlibxml.py @@ -4,10 +4,10 @@ from distutils import log, version from contextlib import closing try: - from urlparse import urlsplit, urljoin, unquote + from urlparse import urljoin, unquote from urllib import urlretrieve, urlopen, urlcleanup except ImportError: - from urllib.parse import urlsplit, urljoin, unquote + from urllib.parse import urljoin, unquote from urllib.request import urlretrieve, urlopen, urlcleanup multi_make_options = [] |