app/django/core/management/commands/sqlinitialdata.py
author Lennard de Rijk <ljvderijk@gmail.com>
Wed, 01 Jul 2009 08:29:49 +0200
changeset 2469 ac14b088f89e
parent 54 03e267d67478
permissions -rw-r--r--
Returned access checks in Survey View to the right state. This got bugged in James's commt.

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