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:
authorNino van Hooff <ninovanhooff@gmail.com>2020-03-10 16:23:40 +0300
committerNino van Hooff <ninovanhooff@gmail.com>2020-03-10 16:23:40 +0300
commitd11b3b0921edb708e7ce48d647dc8f35a1f385fc (patch)
tree67c2c91feb34b86dd8023b7ab4c81b75da351108 /plugins/CuraDrive
parentebfad16508afd8452fb56e02df0c60bd909dbbb9 (diff)
Extra comment for RestoreBackupJob
Diffstat (limited to 'plugins/CuraDrive')
-rw-r--r--plugins/CuraDrive/src/RestoreBackupJob.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/CuraDrive/src/RestoreBackupJob.py b/plugins/CuraDrive/src/RestoreBackupJob.py
index 86e32aca97..08f9d73e1e 100644
--- a/plugins/CuraDrive/src/RestoreBackupJob.py
+++ b/plugins/CuraDrive/src/RestoreBackupJob.py
@@ -42,7 +42,7 @@ class RestoreBackupJob(Job):
error_callback = self._onRestoreRequestCompleted
)
- self._job_done.wait()
+ self._job_done.wait() # A job is considered finished when the run function completes
def _onRestoreRequestCompleted(self, reply: QNetworkReply, error: Optional["QNetworkReply.NetworkError"] = None):
if not HttpRequestManager.replyIndicatesSuccess(reply, error):