diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-08-01 22:44:45 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-08-01 22:44:45 -0400 |
commit | 12dc2c65240bb6d609db30a56dbb1fe217771a17 (patch) | |
tree | 84e81734a1db8f3363c44b959195507043497a91 | |
parent | 406885845bdb94abe7c6c63df1f1874e09a36d9d (diff) | |
download | external_python_setuptools-12dc2c65240bb6d609db30a56dbb1fe217771a17.tar.gz external_python_setuptools-12dc2c65240bb6d609db30a56dbb1fe217771a17.tar.bz2 external_python_setuptools-12dc2c65240bb6d609db30a56dbb1fe217771a17.zip |
Get six from extern
-rw-r--r-- | setuptools/tests/test_archive_util.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/setuptools/tests/test_archive_util.py b/setuptools/tests/test_archive_util.py index 1936d2a5..3f67b2d4 100644 --- a/setuptools/tests/test_archive_util.py +++ b/setuptools/tests/test_archive_util.py @@ -1,11 +1,12 @@ # coding: utf-8 -import six +from setuptools.extern import six import pytest from setuptools import archive_util + @pytest.fixture def tarfile_with_unicode(tmpdir): """ |