From 168c4a5696510bb3c6256b519352a6b0413dd713 Mon Sep 17 00:00:00 2001 From: Peter Surda Date: Tue, 3 Dec 2019 12:59:27 +0100 Subject: [PATCH] Checkdeps fix - an exception can be triggered if too many requirements are fulfilled --- checkdeps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/checkdeps.py b/checkdeps.py index 03782037..45dc2fc9 100755 --- a/checkdeps.py +++ b/checkdeps.py @@ -164,7 +164,7 @@ if (not compiler or prereqs) and OPSYS in PACKAGE_MANAGER: if not compiler: compilerToPackages() prereqToPackages() - if mandatory: + if prereqs and mandatory: sys.exit(1) else: print("All the dependencies satisfied, you can install PyBitmessage")