summaryrefslogtreecommitdiff
path: root/distutils2/config.py
diff options
context:
space:
mode:
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