app/django/core/management/commands/sqlinitialdata.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Thu, 20 Nov 2008 22:51:07 +0000
changeset 524 774b379e058c
parent 54 03e267d67478
permissions -rw-r--r--
Small comment fix in Linkable model. 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.")