fix string to bool
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Kim Oliver Drechsel 2021-08-08 14:16:30 +02:00
parent ceba9ff0e3
commit 9c9b3fe2e6

View File

@ -6,7 +6,7 @@ import colorlog
def loghandler():
debug_mode = os.getenv('DEBUG_MODE', False)
debug_mode = os.getenv('DEBUG_MODE', "False")
if debug_mode.lower() == "false":
debug_mode = False