app/django/core/management/commands/sqlinitialdata.py
author Lennard de Rijk <ljvderijk@gmail.com>
Wed, 15 Jul 2009 15:28:02 +0200
changeset 2660 e2654d53a643
parent 54 03e267d67478
permissions -rw-r--r--
Another batch of style fixes for Surveys.

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