aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/mcompile.py
diff options
context:
space:
mode:
authorDaniel Mensinger <daniel@mensinger-ka.de>2020-09-04 15:50:30 +0200
committerDaniel Mensinger <daniel@mensinger-ka.de>2020-09-08 20:15:59 +0200
commit8f95efe40b6af4b49b692d1875066759c44a009d (patch)
tree467e627b5870e84ce945c019fa279a0f41ab019e /mesonbuild/mcompile.py
parent4253bf62814997bd2c985a2a72e86c260338fb4d (diff)
downloadmeson-8f95efe40b6af4b49b692d1875066759c44a009d.zip
meson-8f95efe40b6af4b49b692d1875066759c44a009d.tar.gz
meson-8f95efe40b6af4b49b692d1875066759c44a009d.tar.bz2
typing: fixup of #7688
This bug not beeing caught in review is another reason for adding strict typing support to meson.
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 3267529..f91f05d 100644
--- a/mesonbuild/mcompile.py
+++ b/mesonbuild/mcompile.py
@@ -139,7 +139,7 @@ def get_parsed_args_ninja(options: 'argparse.Namespace', builddir: Path) -> T.Li
runner = detect_ninja()
if runner is None:
raise MesonException('Cannot find ninja.')
- mlog.log('Found runner:', runner)
+ mlog.log('Found runner:', str(runner))
cmd = runner + ['-C', builddir.as_posix()]