From b647ce1b63961a76a6de63a3586015a4c5d56b44 Mon Sep 17 00:00:00 2001 From: Jon Turney Date: Wed, 12 Feb 2020 14:17:50 +0000 Subject: [PATCH] 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. --- mesonbuild/interpreter.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/mesonbuild/interpreter.py b/mesonbuild/interpreter.py index 9811b0af5..0dfb6163a 100644 --- a/mesonbuild/interpreter.py +++ b/mesonbuild/interpreter.py @@ -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