fixed logging

This commit is contained in:
weckyy702
2021-01-04 13:24:33 +01:00
parent b71ae7ecea
commit de3614229c
2 changed files with 3 additions and 7 deletions

6
run.py
View File

@@ -2,10 +2,6 @@
from gui.gui import Gui
import sys
do_debug = False
if len(sys.argv) > 1:
if sys.argv[1] == "--debug":
do_debug = True
do_debug = "--debug" in sys.argv
Gui(theme='DarkGrey11', debug_mode=do_debug)