aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/mconf.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2017-01-03 16:04:24 -0500
committerGitHub <noreply@github.com>2017-01-03 16:04:24 -0500
commit56e2c46ce1cb1ffb4f0fe56c6462954dd00f33c4 (patch)
tree5c21f10908d00cf9c74d9d386380c42cff73060f /mesonbuild/mconf.py
parent55cdba635e61b68658e0d209a58cfb2f1537df93 (diff)
parentef3cc6b3fabb1032066e7c8ecfd67dc4e1169193 (diff)
downloadmeson-56e2c46ce1cb1ffb4f0fe56c6462954dd00f33c4.zip
meson-56e2c46ce1cb1ffb4f0fe56c6462954dd00f33c4.tar.gz
meson-56e2c46ce1cb1ffb4f0fe56c6462954dd00f33c4.tar.bz2
Merge pull request #1272 from mesonbuild/ignatenko/lint
fix some linting errors
Diffstat (limited to 'mesonbuild/mconf.py')
-rw-r--r--mesonbuild/mconf.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/mconf.py b/mesonbuild/mconf.py
index 8ddf4fe..d6b7624 100644
--- a/mesonbuild/mconf.py
+++ b/mesonbuild/mconf.py
@@ -128,7 +128,7 @@ class Conf:
print('')
print('Core options:')
carr = []
- for key in [ 'buildtype', 'warning_level', 'werror', 'strip', 'unity', 'default_library' ]:
+ for key in ['buildtype', 'warning_level', 'werror', 'strip', 'unity', 'default_library']:
carr.append([key, coredata.get_builtin_option_description(key),
self.coredata.get_builtin_option(key), coredata.get_builtin_option_choices(key)])
self.print_aligned(carr)
@@ -204,7 +204,7 @@ class Conf:
print('')
print('Testing options:')
tarr = []
- for key in [ 'stdsplit', 'errorlogs' ]:
+ for key in ['stdsplit', 'errorlogs']:
tarr.append([key, coredata.get_builtin_option_description(key),
self.coredata.get_builtin_option(key), coredata.get_builtin_option_choices(key)])
self.print_aligned(tarr)