Browse Source

Update jet_custom_apps_example.py (#122)

Thomas Meitz 8 years ago
parent
commit
707ad89e40
1 changed files with 6 additions and 1 deletions
  1. 6 1
      jet/management/commands/jet_custom_apps_example.py

+ 6 - 1
jet/management/commands/jet_custom_apps_example.py

@@ -9,7 +9,12 @@ 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