app/django/core/management/commands/sqlinitialdata.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Sat, 06 Dec 2008 21:32:36 +0000
changeset 690 14e9f484412c
parent 54 03e267d67478
permissions -rw-r--r--
Fix imports sorting in soc.views.models.organization. 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.")