Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArjen Hiemstra <ahiemstra@heimr.nl>2016-12-08 17:31:51 +0300
committerArjen Hiemstra <ahiemstra@heimr.nl>2016-12-08 18:15:17 +0300
commitd641234a744dd55b87934faab4f6e45cf2d10bd1 (patch)
tree295faf59fbf3a6fc3cce04d8c2db9f5775eacc78 /cura/CrashHandler.py
parent0e3ffe997a33724603ce75fbb86be55d796e3069 (diff)
Remove "debug mode" command line parameter
We never used it and it doesn't really work anyway.
Diffstat (limited to 'cura/CrashHandler.py')
-rw-r--r--cura/CrashHandler.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/cura/CrashHandler.py b/cura/CrashHandler.py
index e86e407902..b40a33ae58 100644
--- a/cura/CrashHandler.py
+++ b/cura/CrashHandler.py
@@ -23,8 +23,6 @@ fatal_exception_types = [
def show(exception_type, value, tb):
debug_mode = False
- if QCoreApplication.instance():
- debug_mode = QCoreApplication.instance().getCommandLineOption("debug-mode", False)
Logger.log("c", "An uncaught exception has occurred!")
for line in traceback.format_exception(exception_type, value, tb):