From 86068790edebe60c033eb218b4b585c2825a8e2f Mon Sep 17 00:00:00 2001 From: meeb Date: Sun, 21 Feb 2021 11:52:14 +1100 Subject: [PATCH] missing import --- tubesync/sync/management/commands/reset-tasks.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tubesync/sync/management/commands/reset-tasks.py b/tubesync/sync/management/commands/reset-tasks.py index ff44e2e..06aff22 100644 --- a/tubesync/sync/management/commands/reset-tasks.py +++ b/tubesync/sync/management/commands/reset-tasks.py @@ -1,6 +1,8 @@ from django.core.management.base import BaseCommand, CommandError +from django.utils.translation import gettext_lazy as _ from background_task.models import Task from sync.models import Source +from sync.tasks import index_source_task from common.logger import log