diff options
author | Eli Schwartz <eschwartz@archlinux.org> | 2021-07-08 00:06:10 -0400 |
---|---|---|
committer | Eli Schwartz <eschwartz@archlinux.org> | 2021-10-04 16:29:32 -0400 |
commit | d06cc042eb21bc16a4a5cc957a3615e5e3a9743a (patch) | |
tree | 0907391e3581d707770584f3416a87c0cea18f77 /mesonbuild/mesonlib/universal.py | |
parent | 47ae0b82f0483960fa7a3eabc68700b982688834 (diff) | |
download | meson-d06cc042eb21bc16a4a5cc957a3615e5e3a9743a.zip meson-d06cc042eb21bc16a4a5cc957a3615e5e3a9743a.tar.gz meson-d06cc042eb21bc16a4a5cc957a3615e5e3a9743a.tar.bz2 |
f-strings
Diffstat (limited to 'mesonbuild/mesonlib/universal.py')
-rw-r--r-- | mesonbuild/mesonlib/universal.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/mesonlib/universal.py b/mesonbuild/mesonlib/universal.py index 9cf1cf0..9dffdca 100644 --- a/mesonbuild/mesonlib/universal.py +++ b/mesonbuild/mesonlib/universal.py @@ -1467,8 +1467,8 @@ def _substitute_values_check_errors(command: T.List[str], values: T.Dict[str, T. # Error out if any output-derived templates are present in the command match = iter_regexin_iter(outregex, command) if match: - m = 'Command cannot have {!r} since there are no outputs' - raise MesonException(m.format(match)) + m = f'Command cannot have {match!r} since there are no outputs' + raise MesonException(m) else: # Error out if an invalid @OUTPUTnn@ template was specified for each in command: |