aboutsummaryrefslogtreecommitdiff
path: root/tools/boost_names.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2019-05-02 23:30:29 +0300
committerGitHub <noreply@github.com>2019-05-02 23:30:29 +0300
commit1f4023fa47803458700e52352dec51f3f85fa6c1 (patch)
treee4b2790ff92404ad6f939832922770b9a359908e /tools/boost_names.py
parent06bfc2dab61c5bf79265a8db777b02732ee86ecf (diff)
parent74b535fea74843c83944e9f22d40e6259ca105b8 (diff)
downloadmeson-1f4023fa47803458700e52352dec51f3f85fa6c1.zip
meson-1f4023fa47803458700e52352dec51f3f85fa6c1.tar.gz
meson-1f4023fa47803458700e52352dec51f3f85fa6c1.tar.bz2
Merge pull request #5311 from mensinda/flake8Plugins
Added flake8 plugins and some code fixes
Diffstat (limited to 'tools/boost_names.py')
-rwxr-xr-xtools/boost_names.py2
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)