diff options
-rw-r--r-- | .pylintrc | 1 | ||||
-rw-r--r-- | mesonbuild/utils/universal.py | 2 |
2 files changed, 1 insertions, 2 deletions
@@ -75,7 +75,6 @@ disable= unsubscriptable-object, unused-argument, unused-variable, - use-implicit-booleaness-not-comparison, useless-super-delegation, wrong-import-order, wrong-import-position, diff --git a/mesonbuild/utils/universal.py b/mesonbuild/utils/universal.py index f58a124..4eafcd1 100644 --- a/mesonbuild/utils/universal.py +++ b/mesonbuild/utils/universal.py @@ -871,7 +871,7 @@ def version_compare_many(vstr1: str, conditions: T.Union[str, T.Iterable[str]]) not_found.append(req) else: found.append(req) - return not_found == [], not_found, found + return not not_found, not_found, found # determine if the minimum version satisfying the condition |condition| exceeds |