#13253: Help for manage.py dumpdata doesn't include models in possible arguments ------------------------------------+--------------------------------------- Reporter: arowla | Owner: nobody Status: new | Milestone: Component: Uncategorized | Version: 1.1 Resolution: | Keywords: Stage: Unreviewed | Has_patch: 1 Needs_docs: 0 | Needs_tests: 0 Needs_better_patch: 0 | ------------------------------------+--------------------------------------- Changes (by arowla):
* needs_better_patch: => 0 * needs_tests: => 0 * needs_docs: => 0 Comment: For some reason, my patch is not uploading correctly. My file definitely isn't empty. Oh well. Here it is: {{{ Index: django/core/management/commands/dumpdata.py =================================================================== --- django/core/management/commands/dumpdata.py (revision 12890) +++ django/core/management/commands/dumpdata.py (working copy) @@ -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[.modelname] ...]' def handle(self, *app_labels, **options): from django.db.models import get_app, get_apps, get_models, get_model @@ -163,4 +163,4 @@ ) model_dependencies = skipped - return model_list \ No newline at end of file + return model_list }}} -- Ticket URL: <http://code.djangoproject.com/ticket/13253#comment:1> Django <http://code.djangoproject.com/> The Web framework for perfectionists with deadlines. -- 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.