summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2010-03-31 11:34:32 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2010-03-31 11:34:32 +0000
commitf0fa0808ea5fc740a8264a05f55b3a61c92353a7 (patch)
tree852adbda0a140f5c6ff32135c27d5df190ae855c
parent64e4ffc932c78e6ccd66f20d5d74083fda3a3915 (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.py2
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