app/django/core/management/commands/sqlinitialdata.py
author Madhusudan.C.S <madhusudancs@gmail.com>
Sat, 22 Aug 2009 04:00:56 +0530
changeset 2785 bb6064b9fc9d
parent 54 03e267d67478
permissions -rw-r--r--
Added Organization View for GHOP. Along with adding the View, the View is also registered with sitemap in the GHOP module's callback.py

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