diff options
author | Eli Schwartz <eschwartz@archlinux.org> | 2022-02-01 01:56:04 -0500 |
---|---|---|
committer | Eli Schwartz <eschwartz@archlinux.org> | 2022-02-16 18:19:12 -0500 |
commit | fec7265b5c038d126edb91a0220dd7af9749e805 (patch) | |
tree | 321b4c04034201c043c4e5ac78190e51262bad59 /mesonbuild/mesonlib | |
parent | 078175314a7b0a2b7db00991e5161d9432d96213 (diff) | |
download | meson-fec7265b5c038d126edb91a0220dd7af9749e805.zip meson-fec7265b5c038d126edb91a0220dd7af9749e805.tar.gz meson-fec7265b5c038d126edb91a0220dd7af9749e805.tar.bz2 |
flake8: use plain strings instead of f-strings when no variables used
Diffstat (limited to 'mesonbuild/mesonlib')
-rw-r--r-- | mesonbuild/mesonlib/vsenv.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/mesonlib/vsenv.py b/mesonbuild/mesonlib/vsenv.py index b359025..0d37765 100644 --- a/mesonbuild/mesonlib/vsenv.py +++ b/mesonbuild/mesonlib/vsenv.py @@ -65,7 +65,7 @@ def _setup_vsenv(force: bool) -> bool: bat_info = json.loads(bat_json) if not bat_info: # VS installer instelled but not VS itself maybe? - raise MesonException(f'Could not parse vswhere.exe output') + raise MesonException('Could not parse vswhere.exe output') bat_root = pathlib.Path(bat_info[0]['installationPath']) if platform.machine() == 'ARM64': bat_path = bat_root / 'VC/Auxiliary/Build/vcvarsx86_arm64.bat' |