app/django/core/management/commands/sqlinitialdata.py
author Todd Larsen <tlarsen@google.com>
Sat, 18 Oct 2008 05:25:47 +0000
changeset 378 51c41e8bd45f
parent 54 03e267d67478
permissions -rw-r--r--
Nothing left in this templates directory, so remove it. Patch by: Todd Larsen Review by: to-be-reviewed

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