aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/mconf.py
diff options
context:
space:
mode:
authorMike Sinkovsky <msink@permonline.ru>2017-01-17 18:13:03 +0500
committerJussi Pakkanen <jpakkane@gmail.com>2017-01-18 21:22:47 +0200
commit969be1f6797551a5e9be1a5ea2133fb1c59220d7 (patch)
tree2f9b596fba0c740c154b52f99368bdd4ad48c2b7 /mesonbuild/mconf.py
parent1d177fb1271b4198aa1ff652666a4244ec23a1c6 (diff)
downloadmeson-969be1f6797551a5e9be1a5ea2133fb1c59220d7.zip
meson-969be1f6797551a5e9be1a5ea2133fb1c59220d7.tar.gz
meson-969be1f6797551a5e9be1a5ea2133fb1c59220d7.tar.bz2
cleanup: Remove redundant parentheses
Diffstat (limited to 'mesonbuild/mconf.py')
-rw-r--r--mesonbuild/mconf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/mconf.py b/mesonbuild/mconf.py
index dfdcb94..c921409 100644
--- a/mesonbuild/mconf.py
+++ b/mesonbuild/mconf.py
@@ -231,7 +231,7 @@ def run(args):
except ConfException as e:
print('Meson configurator encountered an error:\n')
print(e)
- return(1)
+ return 1
return 0
if __name__ == '__main__':