Fixed help message introduced in r16427.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@16428 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Jannis Leidel 2011-06-17 14:09:00 +00:00
parent ce165f7bbf
commit 54393493ef
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ class BaseRunserverCommand(BaseCommand):
make_option('--ipv6', '-6', action='store_true', dest='use_ipv6', default=False,
help='Tells Django to use a IPv6 address.'),
make_option('--nothreading', action='store_false', dest='use_threading', default=True,
help='Use threading for web server.'),
help='Tells Django to NOT use threading.'),
make_option('--noreload', action='store_false', dest='use_reloader', default=True,
help='Tells Django to NOT use the auto-reloader.'),
)