summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2015-01-03 02:41:47 -0500
committerJason R. Coombs <jaraco@jaraco.com>2015-01-03 02:41:47 -0500
commit8c34127f5050967ef4da9be21d7bc717a3d5cdd3 (patch)
treea716ec951df7b6e0e654d090f41cee363ebd10c3
parentd0a3a68d5192935730eeab840790f35af971086a (diff)
downloadpython-setuptools-git-8c34127f5050967ef4da9be21d7bc717a3d5cdd3.tar.gz
Restore missing import
-rw-r--r--setuptools/tests/test_easy_install.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/tests/test_easy_install.py b/setuptools/tests/test_easy_install.py
index b8918b17..fc1a26d0 100644
--- a/setuptools/tests/test_easy_install.py
+++ b/setuptools/tests/test_easy_install.py
@@ -25,7 +25,7 @@ from setuptools.compat import StringIO, BytesIO, urlparse
from setuptools.sandbox import run_setup, SandboxViolation
from setuptools.command.easy_install import (
easy_install, fix_jython_executable, get_script_args, nt_quote_arg,
- get_script_header,
+ get_script_header, is_sh,
)
from setuptools.command.easy_install import PthDistributions
from setuptools.command import easy_install as easy_install_pkg