app/django/core/management/commands/sqlinitialdata.py
changeset 54 03e267d67478
equal deleted inserted replaced
53:57b4279d8c4e 54:03e267d67478
       
     1 from django.core.management.base import AppCommand, CommandError
       
     2 
       
     3 class Command(AppCommand):
       
     4     help = "RENAMED: see 'sqlcustom'"
       
     5 
       
     6     def handle(self, *apps, **options):
       
     7         raise CommandError("This command has been renamed. Use the 'sqlcustom' command instead.")