diff options
author | Daniel Mensinger <daniel@mensinger-ka.de> | 2019-04-23 15:00:39 +0200 |
---|---|---|
committer | Daniel Mensinger <daniel@mensinger-ka.de> | 2019-04-29 12:22:50 +0200 |
commit | 3581839f4c611eeb14e64ca2ed6de4dd652ad84b (patch) | |
tree | 932b6ba01b74f241564288c47ae59ca9fe164d36 /tools | |
parent | 2b5831f94fdfdbce711189502c6f41606c12af61 (diff) | |
download | meson-3581839f4c611eeb14e64ca2ed6de4dd652ad84b.zip meson-3581839f4c611eeb14e64ca2ed6de4dd652ad84b.tar.gz meson-3581839f4c611eeb14e64ca2ed6de4dd652ad84b.tar.bz2 |
Fix unused variables warnings
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/boost_names.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/boost_names.py b/tools/boost_names.py index d381162..d0e5444 100755 --- a/tools/boost_names.py +++ b/tools/boost_names.py @@ -132,7 +132,7 @@ def get_modules_2(): # The python module uses an older build system format and is not easily parseable. # We add the python module libraries manually. modules.append(Module('python', 'Python', ['boost_python', 'boost_python3', 'boost_numpy', 'boost_numpy3'])) - for (root, dirs, files) in os.walk(LIBS): + for (root, _, files) in os.walk(LIBS): for f in files: if f == "libraries.json": projectdir = os.path.dirname(root) |