diff options
author | Igor Gnatenko <i.gnatenko.brain@gmail.com> | 2016-12-31 19:50:15 +0100 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-01-01 12:02:05 -0500 |
commit | f0b30baa39180a1047da362eb1411157228d18b7 (patch) | |
tree | 1fa609b6ac6102fc841f593ea5c6338578d78fd0 /mesonbuild/mintro.py | |
parent | 15629d2fae237f71e4c9d67b519e7ef70e9eba78 (diff) | |
download | meson-f0b30baa39180a1047da362eb1411157228d18b7.zip meson-f0b30baa39180a1047da362eb1411157228d18b7.tar.gz meson-f0b30baa39180a1047da362eb1411157228d18b7.tar.bz2 |
style: fix E225 violations
E225: missing whitespace around operator
Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
Diffstat (limited to 'mesonbuild/mintro.py')
-rw-r--r-- | mesonbuild/mintro.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mesonbuild/mintro.py b/mesonbuild/mintro.py index 892770c..3c462c7 100644 --- a/mesonbuild/mintro.py +++ b/mesonbuild/mintro.py @@ -111,11 +111,11 @@ def list_target_files(target_name, coredata, builddata): print(json.dumps(sources)) def list_buildoptions(coredata, builddata): - buildtype= {'choices': ['plain', 'debug', 'debugoptimized', 'release', 'minsize'], - 'type': 'combo', - 'value': coredata.get_builtin_option('buildtype'), - 'description': 'Build type', - 'name': 'type'} + buildtype = {'choices': ['plain', 'debug', 'debugoptimized', 'release', 'minsize'], + 'type': 'combo', + 'value': coredata.get_builtin_option('buildtype'), + 'description': 'Build type', + 'name': 'type'} strip = {'value': coredata.get_builtin_option('strip'), 'type': 'boolean', 'description': 'Strip on install', |