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:
authorJaime van Kessel <nallath@gmail.com>2020-01-10 18:37:46 +0300
committerJaime van Kessel <nallath@gmail.com>2020-01-10 18:37:46 +0300
commite74f049142811d4ed5ce6406bc0075fd4f7c68ee (patch)
tree3671ccf6f11aa946a78c54a513b0884c692a41b2 /cura/CrashHandler.py
parentbb52ba6848dd8319a5cf10bd5e2eaba994f159a5 (diff)
Fix bunch of issues found by pylint
Diffstat (limited to 'cura/CrashHandler.py')
-rw-r--r--cura/CrashHandler.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/cura/CrashHandler.py b/cura/CrashHandler.py
index 6b33dc2d03..e72180887c 100644
--- a/cura/CrashHandler.py
+++ b/cura/CrashHandler.py
@@ -58,6 +58,8 @@ class CrashHandler:
self.traceback = tb
self.has_started = has_started
self.dialog = None # Don't create a QDialog before there is a QApplication
+ self.cura_version = None
+ self.cura_locale = None
Logger.log("c", "An uncaught error has occurred!")
for line in traceback.format_exception(exception_type, value, tb):