From ec42557305b91eb0226515cdba9c88ce2d94c2c1 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Fri, 20 Jan 2017 13:08:48 +0100 Subject: [PATCH] Drop periodic_task call from rebuild command --- src/pretix/base/management/commands/rebuild.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/pretix/base/management/commands/rebuild.py b/src/pretix/base/management/commands/rebuild.py index d664a22f9..b83a7fb10 100644 --- a/src/pretix/base/management/commands/rebuild.py +++ b/src/pretix/base/management/commands/rebuild.py @@ -1,14 +1,11 @@ from django.core.management import call_command from django.core.management.base import BaseCommand -from ...signals import periodic_task - class Command(BaseCommand): help = "Rebuild static files and language files" def handle(self, *args, **options): - periodic_task.send(self) call_command('compilemessages', verbosity=1, interactive=False) call_command('compilejsi18n', verbosity=1, interactive=False) call_command('compilejsi18n', locale='de-informal', verbosity=1, interactive=False)