app/django/core/management/commands/sqlinitialdata.py
author Sverre Rabbelier <sverre@rabbelier.nl>
Mon, 25 May 2009 20:42:11 +0200
changeset 2343 5a4cfa148b7d
parent 54 03e267d67478
permissions -rw-r--r--
Revert "Add a supplemantal block to the edit form" This reverts commit f50455c4cdcb.

from django.core.management.base import AppCommand, CommandError

class Command(AppCommand):
    help = "RENAMED: see 'sqlcustom'"

    def handle(self, *apps, **options):
        raise CommandError("This command has been renamed. Use the 'sqlcustom' command instead.")