diff options
| author | Alex Gaynor <alex.gaynor@gmail.com> | 2012-07-10 14:26:42 -0700 |
|---|---|---|
| committer | Alex Gaynor <alex.gaynor@gmail.com> | 2012-07-10 14:26:42 -0700 |
| commit | 76d5daa60f90d3692b3ff3b7f5054e4bc7c1f374 (patch) | |
| tree | 65443b6fedafe4a2cd1ae3ec685ac9516de71061 | |
| parent | 828f7b62e8d29f796403606a797d7aec6da98647 (diff) | |
Changed `manage.py shell`'s help text to reflect that it can invoke bpython.
| -rw-r--r-- | django/core/management/commands/shell.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/django/core/management/commands/shell.py b/django/core/management/commands/shell.py index 26cbd7f005..075efa0bcd 100644 --- a/django/core/management/commands/shell.py +++ b/django/core/management/commands/shell.py @@ -5,9 +5,9 @@ from optparse import make_option class Command(NoArgsCommand): option_list = NoArgsCommand.option_list + ( make_option('--plain', action='store_true', dest='plain', - help='Tells Django to use plain Python, not IPython.'), + help='Tells Django to use plain Python, not IPython or bpython.'), ) - help = "Runs a Python interactive interpreter. Tries to use IPython, if it's available." + help = "Runs a Python interactive interpreter. Tries to use IPython or bpython, if one of them is available." shells = ['ipython', 'bpython'] requires_model_validation = False |
