diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2014-08-01 15:19:40 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-08-01 15:19:40 -0400 |
commit | b73d7fa62dae090d486c54c8cc434e955a06ffb6 (patch) | |
tree | f36462d6f02f6e75ac471f57b5b82b70399d55f3 | |
parent | 0a17e6723bf703d3f9ebfcde1d5ffaffce682427 (diff) | |
download | external_python_setuptools-b73d7fa62dae090d486c54c8cc434e955a06ffb6.tar.gz external_python_setuptools-b73d7fa62dae090d486c54c8cc434e955a06ffb6.tar.bz2 external_python_setuptools-b73d7fa62dae090d486c54c8cc434e955a06ffb6.zip |
Remove unused variable
--HG--
extra : rebase_source : c4b515b677e318ffdcd78b2d90ab772e7d1f94e3
-rw-r--r-- | setuptools/tests/test_sandbox.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/tests/test_sandbox.py b/setuptools/tests/test_sandbox.py index 06b3d434..0e04ad1c 100644 --- a/setuptools/tests/test_sandbox.py +++ b/setuptools/tests/test_sandbox.py @@ -19,7 +19,7 @@ def has_win32com(): if not sys.platform.startswith('win32'): return False try: - mod = __import__('win32com') + __import__('win32com') except ImportError: return False return True |