From 4044768126cdbbeb78fb2e9514e6257d72f976ed Mon Sep 17 00:00:00 2001 From: Mitch Haddadi <12067255+dfirsec@users.noreply.github.com> Date: Fri, 1 Jul 2022 08:43:32 -0400 Subject: [PATCH] Updated Python version requirement --- check_rep.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/check_rep.py b/check_rep.py index e473327..7ffd969 100644 --- a/check_rep.py +++ b/check_rep.py @@ -205,7 +205,7 @@ def main(settings): # ---[ Python v3.7+ check ]--- if sys.version_info[0] == 3 and sys.version_info[1] <= 8: - sys.exit("\n[x] Please use python version 3.8 or higher.\n") + print("\n[x] Please use python version 3.8 or higher.\n") # ---[ Configuration Parser ]--- yaml = YAML()