Commit f8ff0d0d authored by Jason R. Coombs's avatar Jason R. Coombs

Feed the hobgoblins (delint).

parent c6889825
...@@ -260,7 +260,9 @@ class ConfigHandler: ...@@ -260,7 +260,9 @@ class ConfigHandler:
def parser(value): def parser(value):
exclude_directive = 'file:' exclude_directive = 'file:'
if value.startswith(exclude_directive): 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 value
return parser return parser
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment