aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2019-01-08 14:42:27 -0500
committerJason R. Coombs <jaraco@jaraco.com>2019-01-08 14:42:27 -0500
commitf8ff0d0d4657d5f6a638fb90f0d518bd2768aa7b (patch)
treeb072ba40b1e5cc285c1c781b3645c2528b33e161
parentc688982505753013fa21a79be4a61ec9a3b8bc3c (diff)
downloadexternal_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.py4
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