Skip to content

Commit 76d5daa

Browse files
committed
Changed manage.py shell's help text to reflect that it can invoke bpython.
1 parent 828f7b6 commit 76d5daa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

django/core/management/commands/shell.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
class Command(NoArgsCommand):
66
option_list = NoArgsCommand.option_list + (
77
make_option('--plain', action='store_true', dest='plain',
8-
help='Tells Django to use plain Python, not IPython.'),
8+
help='Tells Django to use plain Python, not IPython or bpython.'),
99
)
10-
help = "Runs a Python interactive interpreter. Tries to use IPython, if it's available."
10+
help = "Runs a Python interactive interpreter. Tries to use IPython or bpython, if one of them is available."
1111
shells = ['ipython', 'bpython']
1212
requires_model_validation = False
1313

0 commit comments

Comments
 (0)