~ubuntu-branches/ubuntu/saucy/python-django/saucy-updates

« back to all changes in this revision

Viewing changes to tests/modeltests/user_commands/management/commands/dance.py

  • Committer: Bazaar Package Importer
  • Author(s): Scott James Remnant
  • Date: 2008-11-15 19:15:33 UTC
  • mto: This revision was merged to the branch mainline in revision 17.
  • Revision ID: james.westby@ubuntu.com-20081115191533-84v2zyjbmp1074ni
Tags: upstream-1.0.1
ImportĀ upstreamĀ versionĀ 1.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
from django.core.management.base import BaseCommand
2
 
 
3
 
class Command(BaseCommand):
4
 
    help = "Dance around like a madman."
5
 
    args = ''
6
 
    requires_model_validation = True
7
 
 
8
 
    def handle(self, *args, **options):
9
 
        print "I don't feel like dancing."
 
 
b'\\ No newline at end of file'