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:
authordigitalfrost <gerald.hofmaier@gmail.com>2022-08-20 20:27:32 +0300
committerdigitalfrost <gerald.hofmaier@gmail.com>2022-08-20 20:27:32 +0300
commitd9fb352ee25f394a1449195b7e62e235ac27bc46 (patch)
treecce4b51416919632c93022369ea307d22cac7a53
parentfe2b8ebaf78474eaabd9f96f059c4b803a0d4240 (diff)
Fix typo
-rw-r--r--cura/TaskManagement/OnExitCallbackManager.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cura/TaskManagement/OnExitCallbackManager.py b/cura/TaskManagement/OnExitCallbackManager.py
index b743cb0d21..07fdd2d111 100644
--- a/cura/TaskManagement/OnExitCallbackManager.py
+++ b/cura/TaskManagement/OnExitCallbackManager.py
@@ -43,7 +43,7 @@ class OnExitCallbackManager:
# which means we should not prevent the application from quitting,
# and we call the application to actually quit.
def triggerNextCallback(self) -> None:
- # Get the next callback and schedule that if
+ # Get the next callback and schedule it
this_callback = None
if self._current_callback_idx < len(self._on_exit_callback_list):
this_callback = self._on_exit_callback_list[self._current_callback_idx]