From 0f3e012d84e57db4b2ea50adb0226ab520b49e65 Mon Sep 17 00:00:00 2001 From: Dan Nicholson Date: Thu, 24 Aug 2023 09:07:53 -0600 Subject: [PATCH] fixup! Add model for background tasks --- kolibri_explore_plugin/jobs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kolibri_explore_plugin/jobs.py b/kolibri_explore_plugin/jobs.py index df3313af5..44d59736a 100644 --- a/kolibri_explore_plugin/jobs.py +++ b/kolibri_explore_plugin/jobs.py @@ -143,7 +143,7 @@ def storage_update_hook(job, orm_job, state=None, **kwargs): # Not one of our tasks. return - # Syncronize the state if needed. + # Synchronize the state if needed. if bg_task.job_state != state: bg_task.job_state = state bg_task.save()