Ticket #6011: management-flush-helptext.diff
File management-flush-helptext.diff, 695 bytes (added by , 17 years ago) |
---|
-
django/core/management/commands/flush.py
10 10 make_option('--noinput', action='store_false', dest='interactive', default=True, 11 11 help='Tells Django to NOT prompt the user for input of any kind.'), 12 12 ) 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.""" 14 14 15 15 def handle_noargs(self, **options): 16 16 from django.conf import settings