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>2019-12-16 13:08:09 +0300
committerJaime van Kessel <nallath@gmail.com>2019-12-16 13:08:09 +0300
commit8fa6239365a598fabd3bb09eeeebcf4f182f3842 (patch)
tree0408e582a8ad4dd499d429aa7fd97e1b1a88b4b5 /cura/CrashHandler.py
parent157a25a992b611fe5133d908edf792b2fc4bd5fc (diff)
Fix spelling mistake
Diffstat (limited to 'cura/CrashHandler.py')
-rw-r--r--cura/CrashHandler.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/cura/CrashHandler.py b/cura/CrashHandler.py
index 5d07ae05e3..27b486d99a 100644
--- a/cura/CrashHandler.py
+++ b/cura/CrashHandler.py
@@ -225,7 +225,7 @@ class CrashHandler:
self.data["opengl"] = {"version": opengl_instance.getOpenGLVersion(), "vendor": opengl_instance.getGPUVendorName(), "type": opengl_instance.getGPUType()}
active_machine_definition_id = "unknown"
- active_machine_manufacterer = "unknown"
+ active_machine_manufacturer = "unknown"
try:
from cura.CuraApplication import CuraApplication
@@ -234,10 +234,10 @@ class CrashHandler:
global_stack = machine_manager.activeMachine
if global_stack is None:
active_machine_definition_id = "empty"
- active_machine_manufacterer = "empty"
+ active_machine_manufacturer = "empty"
else:
active_machine_definition_id = global_stack.definition.getId()
- active_machine_manufacterer = global_stack.definition.getMetaDataEntry("manufacturer", "unknown")
+ active_machine_manufacturer = global_stack.definition.getMetaDataEntry("manufacturer", "unknown")
except:
pass
@@ -246,7 +246,7 @@ class CrashHandler:
scope.set_tag("gpu_vendor", opengl_instance.getGPUVendorName())
scope.set_tag("gpu_type", opengl_instance.getGPUType())
scope.set_tag("active_machine", active_machine_definition_id)
- scope.set_tag("active_machine_manufacterer", active_machine_manufacterer)
+ scope.set_tag("active_machine_manufacturer", active_machine_manufacturer)
return info