Author: russellm
Date: 2010-03-31 06:30:42 -0500 (Wed, 31 Mar 2010)
New Revision: 12893

Modified:
   django/trunk/django/core/management/commands/dumpdata.py
Log:
Fixed #13253 -- Updated the help message for dumpdata to indicate that 
individual models can be serialized. Thanks to arowla for the report.

Modified: django/trunk/django/core/management/commands/dumpdata.py
===================================================================
--- django/trunk/django/core/management/commands/dumpdata.py    2010-03-31 
08:08:29 UTC (rev 12892)
+++ django/trunk/django/core/management/commands/dumpdata.py    2010-03-31 
11:30:42 UTC (rev 12893)
@@ -21,7 +21,7 @@
             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

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-upda...@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.

Reply via email to