aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/compilers
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2022-02-01 02:19:44 -0500
committerEli Schwartz <eschwartz@archlinux.org>2022-02-16 18:19:13 -0500
commit60c893f1c2d348d5c8530c9b0928e6a0bc082217 (patch)
treefeed5ff299935e35981660aa9881c33f6f88ac10 /mesonbuild/compilers
parent07d9c72e17d15983f5a54256a0f39cb7414ed3dc (diff)
downloadmeson-60c893f1c2d348d5c8530c9b0928e6a0bc082217.zip
meson-60c893f1c2d348d5c8530c9b0928e6a0bc082217.tar.gz
meson-60c893f1c2d348d5c8530c9b0928e6a0bc082217.tar.bz2
flake8: remove some redundant separators
Diffstat (limited to 'mesonbuild/compilers')
-rw-r--r--mesonbuild/compilers/detect.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/compilers/detect.py b/mesonbuild/compilers/detect.py
index f347a63..1c91a33 100644
--- a/mesonbuild/compilers/detect.py
+++ b/mesonbuild/compilers/detect.py
@@ -392,7 +392,7 @@ def _detect_c_or_cpp_compiler(env: 'Environment', lang: str, for_machine: Machin
watcom_cls = [sanitize(os.path.join(os.environ['WATCOM'], 'BINNT', 'cl')),
sanitize(os.path.join(os.environ['WATCOM'], 'BINNT', 'cl.exe')),
sanitize(os.path.join(os.environ['WATCOM'], 'BINNT64', 'cl')),
- sanitize(os.path.join(os.environ['WATCOM'], 'BINNT64', 'cl.exe')),]
+ sanitize(os.path.join(os.environ['WATCOM'], 'BINNT64', 'cl.exe'))]
found_cl = sanitize(shutil.which('cl'))
if found_cl in watcom_cls:
mlog.debug('Skipping unsupported cl.exe clone at:', found_cl)