Move to src dir.
[edumed.git] / catalogue / management / commands / repackage.py
diff --git a/catalogue/management/commands/repackage.py b/catalogue/management/commands/repackage.py
deleted file mode 100755 (executable)
index a2851f6..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-# -*- coding: utf-8 -*-
-# This file is part of EduMed, licensed under GNU Affero GPLv3 or later.
-# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
-#
-from django.core.management.base import BaseCommand
-
-
-class Command(BaseCommand):
-    help = 'Rebuilds downloadable packages.'
-
-    def handle(self, **options):
-        from curriculum.models import Level
-
-        for level in Level.objects.all():
-            level.build_packages()