From e3971c1720e4f59982c10e4b8ab61aed94a46988 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sun, 14 Mar 2021 19:24:57 +0000 Subject: [PATCH] Use a file to enable debug mode --- epicyon.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/epicyon.py b/epicyon.py index f31ef781a..98f4dc0fe 100644 --- a/epicyon.py +++ b/epicyon.py @@ -514,6 +514,9 @@ args = parser.parse_args() debug = False if args.debug: debug = True +else: + if os.path.isfile('debug'): + debug = True if args.tests: runAllTests()