From 8fb7d9261a743637b332b71355bc178262dbd206 Mon Sep 17 00:00:00 2001 From: Karol Szuster Date: Tue, 26 Dec 2017 19:57:11 +0100 Subject: [PATCH] Add missing space --- mesonbuild/interpreter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mesonbuild/interpreter.py b/mesonbuild/interpreter.py index 444a6ee99..e5238a7ea 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)