aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarol Szuster <karolsz9898@gmail.com>2017-12-26 19:57:11 +0100
committerJussi Pakkanen <jpakkane@gmail.com>2017-12-27 00:41:09 +0200
commit8fb7d9261a743637b332b71355bc178262dbd206 (patch)
treebf4b294a8a57e4bb2eb1981cda65023905c2cff7
parent7fc46a3d06289a19c1559c9347806a4cd339e536 (diff)
downloadmeson-8fb7d9261a743637b332b71355bc178262dbd206.zip
meson-8fb7d9261a743637b332b71355bc178262dbd206.tar.gz
meson-8fb7d9261a743637b332b71355bc178262dbd206.tar.bz2
Add missing space
-rw-r--r--mesonbuild/interpreter.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/interpreter.py b/mesonbuild/interpreter.py
index 444a6ee..e5238a7 100644
--- a/mesonbuild/interpreter.py
+++ b/mesonbuild/interpreter.py
@@ -1667,7 +1667,7 @@ external dependencies (including libraries) must go to "dependencies".''')
search_dir = os.path.join(srcdir, self.subdir)
prog = ExternalProgram(cmd, silent=True, search_dir=search_dir)
if not prog.found():
- raise InterpreterException('Program or command {!r} not found'
+ raise InterpreterException('Program or command {!r} not found '
'or not executable'.format(cmd))
cmd = prog
cmd_path = os.path.relpath(cmd.get_path(), start=srcdir)