diff options
Diffstat (limited to 'tools/boost_names.py')
-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) |