summaryrefslogtreecommitdiff
path: root/distutils2/config.py
diff options
context:
space:
mode:
author?ric Araujo <merwok@netwok.org>2011-11-20 19:04:39 +0100
committer?ric Araujo <merwok@netwok.org>2011-11-20 19:04:39 +0100
commit5bf02c43b4e6e8e8a23bb4b5269200b66ecfc4f2 (patch)
treee84de711b98b49036117b82a9da2f7b7f7314f99 /distutils2/config.py
parent3fd9d8cc01d307513abf74c17f8f6573dacb8b36 (diff)
downloaddisutils2-5bf02c43b4e6e8e8a23bb4b5269200b66ecfc4f2.tar.gz
Remove unused names
Diffstat (limited to 'distutils2/config.py')
-rw-r--r--distutils2/config.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/distutils2/config.py b/distutils2/config.py
index e6a52fc..5c3eaf1 100644
--- a/distutils2/config.py
+++ b/distutils2/config.py
@@ -21,7 +21,6 @@ def _check_name(name, packages):
if '.' not in name:
return
parts = name.split('.')
- modname = parts[-1]
parent = '.'.join(parts[:-1])
if parent not in packages:
# we could log a warning instead of raising, but what's the use