From f0fa0808ea5fc740a8264a05f55b3a61c92353a7 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Wed, 31 Mar 2010 11:34:32 +0000 Subject: [PATCH] [1.1.X] Fixed #13253 -- Updated the help message for dumpdata to indicate that individual models can be serialized. Thanks to arowla for the report. Backport of r12893 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12894 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 7e05b89160..bb1e99d953 100644 --- a/django/core/management/commands/dumpdata.py +++ b/django/core/management/commands/dumpdata.py @@ -15,7 +15,7 @@ class Command(BaseCommand): help='App to exclude (use multiple --exclude to exclude multiple apps).'), ) 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