diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-12-14 11:00:45 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-12-14 11:00:45 -0500 |
commit | 1802d1322ccffcd0b79c63aa7ce9d22e0106015c (patch) | |
tree | daf49c1f8ed03444030126618c82cf031fd731d2 | |
parent | e066c97f828ec5ab8be4dde6e340dbfdcd312ec0 (diff) | |
download | external_python_setuptools-1802d1322ccffcd0b79c63aa7ce9d22e0106015c.tar.gz external_python_setuptools-1802d1322ccffcd0b79c63aa7ce9d22e0106015c.tar.bz2 external_python_setuptools-1802d1322ccffcd0b79c63aa7ce9d22e0106015c.zip |
Apply patch, disabling interpolation. Fixes #889.
-rw-r--r-- | setuptools/py36compat.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/py36compat.py b/setuptools/py36compat.py index 5bad9630..f5279696 100644 --- a/setuptools/py36compat.py +++ b/setuptools/py36compat.py @@ -33,7 +33,7 @@ class Distribution_parse_config_files: if DEBUG: self.announce("Distribution.parse_config_files():") - parser = ConfigParser() + parser = ConfigParser(interpolation=None) for filename in filenames: if DEBUG: self.announce(" reading %s" % filename) |