diff options
| author | Jannis Leidel <jannis@leidel.info> | 2011-07-29 09:40:02 +0000 |
|---|---|---|
| committer | Jannis Leidel <jannis@leidel.info> | 2011-07-29 09:40:02 +0000 |
| commit | 643239e7df3b4e164b75847bbbb377d45da800a6 (patch) | |
| tree | 53d38f859797c5bfda97d0ebfacc8bdd4dacb631 /django/core | |
| parent | f0280f2e94e9acdeb34547d49f9cad8c68aa3e83 (diff) | |
Fixed #16477 -- Correct help text of an option of the dumpdata management command. Thanks, charettes.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16561 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/core')
| -rw-r--r-- | django/core/management/commands/dumpdata.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/django/core/management/commands/dumpdata.py b/django/core/management/commands/dumpdata.py index 706bf601f9..501c494c2b 100644 --- a/django/core/management/commands/dumpdata.py +++ b/django/core/management/commands/dumpdata.py @@ -13,8 +13,8 @@ class Command(BaseCommand): make_option('--indent', default=None, dest='indent', type='int', help='Specifies the indent level to use when pretty-printing output'), make_option('--database', action='store', dest='database', - default=DEFAULT_DB_ALIAS, help='Nominates a specific database to load ' - 'fixtures into. Defaults to the "default" database.'), + default=DEFAULT_DB_ALIAS, help='Nominates a specific database to dump ' + 'fixtures from. Defaults to the "default" database.'), make_option('-e', '--exclude', dest='exclude',action='append', default=[], help='An appname or appname.ModelName to exclude (use multiple --exclude to exclude multiple apps/models).'), make_option('-n', '--natural', action='store_true', dest='use_natural_keys', default=False, |
