app/django/core/management/commands/sqlinitialdata.py
author Sverre Rabbelier <sverre@rabbelier.nl>
Fri, 03 Jul 2009 18:39:17 -0700
changeset 2523 9d9d1ded30ee
parent 54 03e267d67478
permissions -rw-r--r--
addressed comments to previous version to-be-reviewed: still untested

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.")