app/django/core/management/commands/sqlinitialdata.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Sun, 30 Nov 2008 17:37:06 +0000
changeset 632 1f20cfb91e11
parent 54 03e267d67478
permissions -rw-r--r--
Remove unused imports from some modules. Patch by: Pawel Solyga

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