Re-enable Debug mode by default

As discussed a while ago, we want to re-enable the crash dialog whenever
an uncaught exception occurs.
This commit is contained in:
Arjen Hiemstra 2016-12-08 15:32:41 +01:00
parent d641234a74
commit 1de8024193

View file

@ -22,7 +22,7 @@ fatal_exception_types = [
]
def show(exception_type, value, tb):
debug_mode = False
debug_mode = True
Logger.log("c", "An uncaught exception has occurred!")
for line in traceback.format_exception(exception_type, value, tb):