Ticket #13253: dumpdata_help_bugfix.diff

File dumpdata_help_bugfix.diff, 764 bytes (added by Alison Rowland, 14 years ago)
  • django/core/management/commands/dumpdata.py

     
    2121            help='Use natural keys if they are available.'),
    2222    )
    2323    help = 'Output the contents of the database as a fixture of the given format.'
    24     args = '[appname ...]'
     24    args = '[appname[.modelname] ...]'
    2525
    2626    def handle(self, *app_labels, **options):
    2727        from django.db.models import get_app, get_apps, get_models, get_model
     
    163163            )
    164164        model_dependencies = skipped
    165165
    166     return model_list
    167  No newline at end of file
     166    return model_list
Back to Top