Author: russellm
Date: 2010-03-31 06:34:32 -0500 (Wed, 31 Mar 2010)
New Revision: 12894

Modified:
   django/branches/releases/1.1.X/django/core/management/commands/dumpdata.py
Log:
[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.

Modified: 
django/branches/releases/1.1.X/django/core/management/commands/dumpdata.py
===================================================================
--- django/branches/releases/1.1.X/django/core/management/commands/dumpdata.py  
2010-03-31 11:30:42 UTC (rev 12893)
+++ django/branches/releases/1.1.X/django/core/management/commands/dumpdata.py  
2010-03-31 11:34:32 UTC (rev 12894)
@@ -15,7 +15,7 @@
             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

-- 
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