mirror of
https://github.com/django/django.git
synced 2025-11-07 07:15:35 +00:00
Fixed #13746: made the dumdata help message a bit clearer. Thanks, PaulM.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@13469 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
@@ -20,7 +20,8 @@ class Command(BaseCommand):
|
||||
make_option('-n', '--natural', action='store_true', dest='use_natural_keys', default=False,
|
||||
help='Use natural keys if they are available.'),
|
||||
)
|
||||
help = 'Output the contents of the database as a fixture of the given format.'
|
||||
help = ("Output the contents of the database as a fixture of the given "
|
||||
"format (using each model's default manager).")
|
||||
args = '[appname appname.ModelName ...]'
|
||||
|
||||
def handle(self, *app_labels, **options):
|
||||
@@ -163,4 +164,4 @@ def sort_dependencies(app_list):
|
||||
)
|
||||
model_dependencies = skipped
|
||||
|
||||
return model_list
|
||||
return model_list
|
||||
|
||||
Reference in New Issue
Block a user