diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2010-03-31 11:34:32 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2010-03-31 11:34:32 +0000 |
| commit | f0fa0808ea5fc740a8264a05f55b3a61c92353a7 (patch) | |
| tree | 852adbda0a140f5c6ff32135c27d5df190ae855c | |
| parent | 64e4ffc932c78e6ccd66f20d5d74083fda3a3915 (diff) | |
[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.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12894 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 7e05b89160..bb1e99d953 100644 --- a/django/core/management/commands/dumpdata.py +++ b/django/core/management/commands/dumpdata.py @@ -15,7 +15,7 @@ class Command(BaseCommand): 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 |
