|
@@ -1,11 +1,20 @@
|
|
|
-from django.core.management.base import NoArgsCommand
|
|
|
+try:
|
|
|
+ from django.core.management.base import NoArgsCommand
|
|
|
+except ImportError:
|
|
|
+ from django.core.management import BaseCommand as NoArgsCommand
|
|
|
+
|
|
|
from jet.utils import get_app_list
|
|
|
|
|
|
|
|
|
class Command(NoArgsCommand):
|
|
|
help = 'Generates example of JET custom apps setting'
|
|
|
item_order = 0
|
|
|
-
|
|
|
+
|
|
|
+ def handle(self, *args, **options):
|
|
|
+ if args:
|
|
|
+ raise CommandError("Command doesn't accept any arguments")
|
|
|
+ return self.handle_noargs(**options)
|
|
|
+
|
|
|
def handle_noargs(self, **options):
|
|
|
class User:
|
|
|
is_active = True
|