aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'setuptools/config.py')
-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