diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-07-30 11:19:38 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-07-30 11:19:38 -0400 |
commit | 09234d3084739075e0aba59002419c341a59a47e (patch) | |
tree | 45c99ca447ba9f00d9767bd5906c0daccabade6f /setuptools/tests/test_msvc.py | |
parent | 6571ce8b2152c0c6e1e7012fe07970e96484a1a7 (diff) | |
download | external_python_setuptools-09234d3084739075e0aba59002419c341a59a47e.tar.gz external_python_setuptools-09234d3084739075e0aba59002419c341a59a47e.tar.bz2 external_python_setuptools-09234d3084739075e0aba59002419c341a59a47e.zip |
Correct import
Diffstat (limited to 'setuptools/tests/test_msvc.py')
-rw-r--r-- | setuptools/tests/test_msvc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/tests/test_msvc.py b/setuptools/tests/test_msvc.py index 0d0a90f5..8c7e17d3 100644 --- a/setuptools/tests/test_msvc.py +++ b/setuptools/tests/test_msvc.py @@ -6,7 +6,7 @@ import os import contextlib import distutils.errors -import six +from setuptools.extern import six import pytest try: |