From 9f0293383278843b69622a7c99c0cb4991d5ff4f Mon Sep 17 00:00:00 2001 From: Recolic Keghart <root@recolic.net> Date: Sat, 22 Feb 2020 05:17:43 -0800 Subject: [PATCH] reject main input --- main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.py b/main.py index d26ada7..7a6f4a8 100755 --- a/main.py +++ b/main.py @@ -3,7 +3,8 @@ import traceback def show_exception_and_exit(exc_type, exc_value, tb): traceback.print_exception(exc_type, exc_value, tb) - input("Press any key to exit.") + # input("Press any key to exit.") + # PROG BETA calls this program. do not block sys.exit(-1) import sys -- GitLab