aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/mconf.py
diff options
context:
space:
mode:
authorIgor Gnatenko <i.gnatenko.brain@gmail.com>2016-12-31 20:27:52 +0100
committerJussi Pakkanen <jpakkane@gmail.com>2017-01-01 12:02:05 -0500
commitf0bc5568a74d555b332671d0f7f0d950688e2d61 (patch)
tree060cb67e09c06a95d3479c92411fa847b994fdfe /mesonbuild/mconf.py
parent969dc7e995fcc19418bf4c6f66ac97b5a4ff2150 (diff)
downloadmeson-f0bc5568a74d555b332671d0f7f0d950688e2d61.zip
meson-f0bc5568a74d555b332671d0f7f0d950688e2d61.tar.gz
meson-f0bc5568a74d555b332671d0f7f0d950688e2d61.tar.bz2
style: fix E703 violations
E703: statement ends with a semicolon Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
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 0d3f702..8ddf4fe 100644
--- a/mesonbuild/mconf.py
+++ b/mesonbuild/mconf.py
@@ -195,10 +195,10 @@ class Conf:
opt = options[key]
if (opt.choices is None) or (len(opt.choices) == 0):
# Zero length list or string
- choices = '';
+ choices = ''
else:
# A non zero length list or string, convert to string
- choices = str(opt.choices);
+ choices = str(opt.choices)
optarr.append([key, opt.description, opt.value, choices])
self.print_aligned(optarr)
print('')