Cosmetic tweak to error message for incdir() with an absolute path

Cosmetic tweak to the error message for incdir() with an absolute path.
Don't split the message in the middle of a sentence at a point which may
or may not correspond to the terminal width.
This commit is contained in:
Jon Turney 2020-02-12 14:17:50 +00:00
parent 1081738113
commit b647ce1b63
No known key found for this signature in database
GPG Key ID: C7C86F0370285C81
1 changed files with 3 additions and 2 deletions

View File

@ -4220,8 +4220,9 @@ This will become a hard error in the future.''' % kwargs['input'], location=self
for a in incdir_strings:
if a.startswith(src_root):
raise InvalidArguments('''Tried to form an absolute path to a source dir. You should not do that but use
relative paths instead.
raise InvalidArguments('Tried to form an absolute path to a source dir. '
'You should not do that but use relative paths instead.'
'''
To get include path to any directory relative to the current dir do