aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/dependencies
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2022-01-26 01:51:59 -0500
committerDylan Baker <dylan@pnwbakers.com>2022-01-27 10:48:01 -0800
commit3990dc6d6429f6da8917c2f3f719e56fa20ac2ed (patch)
treea8c243fca13b87cccacc82b2523b99e3bde5e7d6 /mesonbuild/dependencies
parenta28d5467954572767389729691e497d4da44b16e (diff)
downloadmeson-3990dc6d6429f6da8917c2f3f719e56fa20ac2ed.zip
meson-3990dc6d6429f6da8917c2f3f719e56fa20ac2ed.tar.gz
meson-3990dc6d6429f6da8917c2f3f719e56fa20ac2ed.tar.bz2
flake8: fix indentation style
Diffstat (limited to 'mesonbuild/dependencies')
-rw-r--r--mesonbuild/dependencies/hdf5.py2
-rw-r--r--mesonbuild/dependencies/pkgconfig.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/dependencies/hdf5.py b/mesonbuild/dependencies/hdf5.py
index 2f1ed0a..ffc1424 100644
--- a/mesonbuild/dependencies/hdf5.py
+++ b/mesonbuild/dependencies/hdf5.py
@@ -164,7 +164,7 @@ def hdf5_factory(env: 'Environment', for_machine: 'MachineChoice',
if PCEXE:
# some distros put hdf5-1.2.3.pc with version number in .pc filename.
ret = subprocess.run([PCEXE, '--list-all'], stdout=subprocess.PIPE, stderr=subprocess.DEVNULL,
- text=True)
+ text=True)
if ret.returncode == 0:
for pkg in ret.stdout.split('\n'):
if pkg.startswith('hdf5'):
diff --git a/mesonbuild/dependencies/pkgconfig.py b/mesonbuild/dependencies/pkgconfig.py
index e6921e9..a7b7fc8 100644
--- a/mesonbuild/dependencies/pkgconfig.py
+++ b/mesonbuild/dependencies/pkgconfig.py
@@ -296,7 +296,7 @@ class PkgConfigDependency(ExternalDependency):
continue
else:
mlog.warning('Library {!r} not found for dependency {!r}, may '
- 'not be successfully linked'.format(libfilename, self.name))
+ 'not be successfully linked'.format(libfilename, self.name))
libs_notfound.append(lib)
else:
lib = foundname