Ticket #6011: management-flush-helptext.diff

File management-flush-helptext.diff, 695 bytes (added by Aaron C. de Bruyn, 17 years ago)

Updated help text for flush command

  • django/core/management/commands/flush.py

     
    1010        make_option('--noinput', action='store_false', dest='interactive', default=True,
    1111            help='Tells Django to NOT prompt the user for input of any kind.'),
    1212    )
    13     help = "Executes ``sqlflush`` on the current database."
     13    help = """Returns the database to a post-sync state by deleting all the data from the application's tables."""
    1414
    1515    def handle_noargs(self, **options):
    1616        from django.conf import settings
Back to Top