summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRamiro Morales <cramm0@gmail.com>2011-10-29 15:01:17 +0000
committerRamiro Morales <cramm0@gmail.com>2011-10-29 15:01:17 +0000
commiteedc9cb5f67dad63036126953b8955c763a86bbc (patch)
tree3387867aeb72acc52c27232c098f8a140c18952c
parent52c66a21e1b2d790f12da6e05e10142397998d31 (diff)
Fixed #16849 -- Updated management command verbosity option help text.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17053 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/core/management/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/management/base.py b/django/core/management/base.py
index f1d8263550..77c80fe695 100644
--- a/django/core/management/base.py
+++ b/django/core/management/base.py
@@ -119,7 +119,7 @@ class BaseCommand(object):
option_list = (
make_option('-v', '--verbosity', action='store', dest='verbosity', default='1',
type='choice', choices=['0', '1', '2', '3'],
- help='Verbosity level; 0=minimal output, 1=normal output, 2=all output'),
+ help='Verbosity level; 0=minimal output, 1=normal output, 2=verbose output 3=very verbose output'),
make_option('--settings',
help='The Python path to a settings module, e.g. "myproject.settings.main". If this isn\'t provided, the DJANGO_SETTINGS_MODULE environment variable will be used.'),
make_option('--pythonpath',