aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/mesonlib.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/mesonlib.py
parent1d177fb1271b4198aa1ff652666a4244ec23a1c6 (diff)
downloadmeson-969be1f6797551a5e9be1a5ea2133fb1c59220d7.zip
meson-969be1f6797551a5e9be1a5ea2133fb1c59220d7.tar.gz
meson-969be1f6797551a5e9be1a5ea2133fb1c59220d7.tar.bz2
cleanup: Remove redundant parentheses
Diffstat (limited to 'mesonbuild/mesonlib.py')
-rw-r--r--mesonbuild/mesonlib.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/mesonlib.py b/mesonbuild/mesonlib.py
index c4f6769..305d945 100644
--- a/mesonbuild/mesonlib.py
+++ b/mesonbuild/mesonlib.py
@@ -208,7 +208,7 @@ def version_compare_many(vstr1, conditions):
not_found.append(req)
else:
found.append(req)
- return (not_found == [], not_found, found)
+ return not_found == [], not_found, found
def default_libdir():
if is_debianlike():
@@ -395,4 +395,4 @@ def Popen_safe(args, write=None, stderr=subprocess.PIPE, **kwargs):
stdout=subprocess.PIPE,
stderr=stderr, **kwargs)
o, e = p.communicate(write)
- return (p, o, e)
+ return p, o, e