parts/django/tests/regressiontests/admin_scripts/management/commands/app_command.py
author Nishanth Amuluru <nishanth@fossee.in>
Sat, 08 Jan 2011 11:20:57 +0530
changeset 307 c6bca38c1cbf
permissions -rw-r--r--
Added buildout stuff and made changes accordingly

from django.core.management.base import AppCommand

class Command(AppCommand):
    help = 'Test Application-based commands'
    requires_model_validation = False
    args = '[appname ...]'

    def handle_app(self, app, **options):
        print 'EXECUTE:AppCommand app=%s, options=%s' % (app, sorted(options.items()))