aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'setuptools/config.py')
-rw-r--r--setuptools/config.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/setuptools/config.py b/setuptools/config.py
index 302d633f..15d18672 100644
--- a/setuptools/config.py
+++ b/setuptools/config.py
@@ -85,12 +85,9 @@ def configuration_to_dict(handlers):
config_dict = defaultdict(dict)
for handler in handlers:
-
- obj_alias = handler.section_prefix
-
for option in handler.set_options:
value = _get_option(handler.target_obj, option)
- config_dict[obj_alias][option] = value
+ config_dict[handler.section_prefix][option] = value
return config_dict