aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/mcompile.py
diff options
context:
space:
mode:
authorAlf Henrik Sauge <alf.henrik.sauge@gmail.com>2022-08-11 21:29:15 +0200
committerEli Schwartz <eschwartz93@gmail.com>2022-08-26 17:12:40 -0400
commit9ad5d0df4a3ad8dcc9d5d270b83894d3c60dd095 (patch)
treed3ceeee63057cb133d7b011b0540615ae688805b /mesonbuild/mcompile.py
parent06bf9a5cdae6a185a29e5ea5bcaf18ad3e3e042a (diff)
downloadmeson-9ad5d0df4a3ad8dcc9d5d270b83894d3c60dd095.zip
meson-9ad5d0df4a3ad8dcc9d5d270b83894d3c60dd095.tar.gz
meson-9ad5d0df4a3ad8dcc9d5d270b83894d3c60dd095.tar.bz2
Remove redundant backslash and fix white space issue
Diffstat (limited to 'mesonbuild/mcompile.py')
-rw-r--r--mesonbuild/mcompile.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/mcompile.py b/mesonbuild/mcompile.py
index 432de44..1eb8bff 100644
--- a/mesonbuild/mcompile.py
+++ b/mesonbuild/mcompile.py
@@ -125,7 +125,7 @@ def get_target_from_intro_data(target: ParsedTargetName, builddir: Path, introsp
t = i['type'].replace(' ', '_')
suggestions.append(f'- ./{p}:{t}')
suggestions_str = '\n'.join(suggestions)
- raise MesonException(f'Can\'t invoke target `{target.full_name}`: ambiguous name.' \
+ raise MesonException(f'Can\'t invoke target `{target.full_name}`: ambiguous name.'
f'Add target type and/or path:\n{suggestions_str}')
return found_targets[0]