Browse Source

Fix typo in property. Not sure why this didn't crash tbh.

done while investigating CURA-9196
Remco Burema 2 years ago
parent
commit
854921c002
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plugins/RemovableDriveOutputDevice/RemovableDrivePlugin.py

+ 1 - 1
plugins/RemovableDriveOutputDevice/RemovableDrivePlugin.py

@@ -21,7 +21,7 @@ class RemovableDrivePlugin(OutputDevicePlugin):
         super().__init__()
 
         self._update_thread = threading.Thread(target = self._updateThread)
-        self._update_thread.deamon = True
+        self._update_thread.daemon = True
 
         self._check_updates = True