From 9a8a15ecbb5016cff40f66c0d8f767c66652cabd Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Wed, 31 Mar 2010 11:30:42 +0000 Subject: [PATCH] Fixed #13253 -- Updated the help message for dumpdata to indicate that individual models can be serialized. Thanks to arowla for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@12893 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/core/management/commands/dumpdata.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/core/management/commands/dumpdata.py b/django/core/management/commands/dumpdata.py index 6f74cbce27..88b2c8fd57 100644 --- a/django/core/management/commands/dumpdata.py +++ b/django/core/management/commands/dumpdata.py @@ -21,7 +21,7 @@ class Command(BaseCommand): help='Use natural keys if they are available.'), ) help = 'Output the contents of the database as a fixture of the given format.' - args = '[appname ...]' + args = '[appname appname.ModelName ...]' def handle(self, *app_labels, **options): from django.db.models import get_app, get_apps, get_models, get_model