diff options
Diffstat (limited to 'mesonbuild/programs.py')
-rw-r--r-- | mesonbuild/programs.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mesonbuild/programs.py b/mesonbuild/programs.py index af27801..79f8300 100644 --- a/mesonbuild/programs.py +++ b/mesonbuild/programs.py @@ -106,15 +106,15 @@ class ExternalProgram(mesonlib.HoldableObject): cmd: T.List[T.Union[str, ExternalProgram]] = [self, '--version'] res = interpreter.run_command_impl(interpreter.current_node, cmd, {}, True) if res.returncode != 0: - m = 'Running {!r} failed' - raise mesonlib.MesonException(m.format(raw_cmd)) + m = f'Running {raw_cmd!r} failed' + raise mesonlib.MesonException(m) output = res.stdout.strip() if not output: output = res.stderr.strip() match = re.search(r'([0-9][0-9\.]+)', output) if not match: - m = 'Could not find a version number in output of {!r}' - raise mesonlib.MesonException(m.format(raw_cmd)) + m = f'Could not find a version number in output of {raw_cmd!r}' + raise mesonlib.MesonException(m) self.cached_version = match.group(1) return self.cached_version |