diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2010-03-31 11:30:42 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2010-03-31 11:30:42 +0000 |
| commit | 9a8a15ecbb5016cff40f66c0d8f767c66652cabd (patch) | |
| tree | 222c497687e814973ebd9d6d7422a834c04117dc | |
| parent | e58c75fbdfbc2f11a1d3d6fd949f7375199c6663 (diff) | |
Fixed #13253 -- Updated the help message for dumpdata to indicate that individual models can be serialized. Thanks to arowla for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12893 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/core/management/commands/dumpdata.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/management/commands/dumpdata.py b/django/core/management/commands/dumpdata.py index 6f74cbce27..88b2c8fd57 100644 --- a/django/core/management/commands/dumpdata.py +++ b/django/core/management/commands/dumpdata.py @@ -21,7 +21,7 @@ class Command(BaseCommand): 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 |
