diff options
author | Rene Meusel <[email protected]> | 2019-09-06 07:08:50 +0200 |
---|---|---|
committer | Rene Meusel <[email protected]> | 2019-09-06 07:08:50 +0200 |
commit | bdff3d5977fbb084ee2d369daf730f1af4a4017e (patch) | |
tree | eb868d43a6df7ea92d31b80473280668b5053d0f /configure.py | |
parent | 434ce477bf16bf16450d89c3c262621e98e4c752 (diff) |
please pylint
Diffstat (limited to 'configure.py')
-rwxr-xr-x | configure.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.py b/configure.py index 27fe7aa6c..a11bc575b 100755 --- a/configure.py +++ b/configure.py @@ -1961,7 +1961,7 @@ def create_template_vars(source_paths, build_paths, options, modules, cc, arch, return os.path.join(build_dir, path) def all_targets(options): - targets = [ t.strip().lower() for t in options.build_targets.split(',') ] + targets = [t.strip().lower() for t in options.build_targets.split(',')] yield 'libs' if 'cli' in targets: yield 'cli' |