diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2019-01-08 14:42:27 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2019-01-08 14:42:27 -0500 |
commit | f8ff0d0d4657d5f6a638fb90f0d518bd2768aa7b (patch) | |
tree | b072ba40b1e5cc285c1c781b3645c2528b33e161 | |
parent | c688982505753013fa21a79be4a61ec9a3b8bc3c (diff) | |
download | external_python_setuptools-f8ff0d0d4657d5f6a638fb90f0d518bd2768aa7b.tar.gz external_python_setuptools-f8ff0d0d4657d5f6a638fb90f0d518bd2768aa7b.tar.bz2 external_python_setuptools-f8ff0d0d4657d5f6a638fb90f0d518bd2768aa7b.zip |
Feed the hobgoblins (delint).
-rw-r--r-- | setuptools/config.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/setuptools/config.py b/setuptools/config.py index 0f7b5955..b6626043 100644 --- a/setuptools/config.py +++ b/setuptools/config.py @@ -260,7 +260,9 @@ class ConfigHandler: def parser(value): exclude_directive = 'file:' if value.startswith(exclude_directive): - raise ValueError('Only strings are accepted for the {0} field, files are not accepted'.format(key)) + raise ValueError( + 'Only strings are accepted for the {0} field, ' + 'files are not accepted'.format(key)) return value return parser |