diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2013-11-27 14:49:22 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2013-11-27 14:49:22 -0500 |
commit | 4ba80b5874929c4408f0af68a6ff2a152c03c314 (patch) | |
tree | 6860c4f975611c02eeb59cc96149b0fd085d79f5 | |
parent | 88ce73b58748de6041073019f23d1aa6c23a3fb4 (diff) | |
download | external_python_setuptools-4ba80b5874929c4408f0af68a6ff2a152c03c314.tar.gz external_python_setuptools-4ba80b5874929c4408f0af68a6ff2a152c03c314.tar.bz2 external_python_setuptools-4ba80b5874929c4408f0af68a6ff2a152c03c314.zip |
Remove unused variable and clean whitespace
-rw-r--r-- | setuptools/tests/test_easy_install.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/setuptools/tests/test_easy_install.py b/setuptools/tests/test_easy_install.py index 5fba8c58..01f07e67 100644 --- a/setuptools/tests/test_easy_install.py +++ b/setuptools/tests/test_easy_install.py @@ -16,7 +16,7 @@ import distutils.core from setuptools.compat import StringIO, BytesIO, next, 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 -from setuptools.command.easy_install import PthDistributions +from setuptools.command.easy_install import PthDistributions from setuptools.command import easy_install as easy_install_pkg from setuptools.dist import Distribution from pkg_resources import Distribution as PRDistribution @@ -243,7 +243,6 @@ class TestUserInstallTest(unittest.TestCase): test_pkg = os.path.join(self.dir, 'test_pkg') test_setup_py = os.path.join(test_pkg, 'setup.py') - test_setup_cfg = os.path.join(test_pkg, 'setup.cfg') os.mkdir(test_pkg) f = open(test_setup_py, 'w') |