summaryrefslogtreecommitdiffstats
path: root/third_party/python/setuptools/setuptools/command/setopt.py
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/python/setuptools/setuptools/command/setopt.py')
-rw-r--r--third_party/python/setuptools/setuptools/command/setopt.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/third_party/python/setuptools/setuptools/command/setopt.py b/third_party/python/setuptools/setuptools/command/setopt.py
index e18057c81e..6358c0451b 100644
--- a/third_party/python/setuptools/setuptools/command/setopt.py
+++ b/third_party/python/setuptools/setuptools/command/setopt.py
@@ -39,6 +39,7 @@ def edit_config(filename, settings, dry_run=False):
"""
log.debug("Reading configuration from %s", filename)
opts = configparser.RawConfigParser()
+ opts.optionxform = lambda x: x
opts.read([filename])
for section, options in settings.items():
if options is None: