There was an error while loading. Please reload this page.
manage.py shell
1 parent 828f7b6 commit 76d5daaCopy full SHA for 76d5daa
django/core/management/commands/shell.py
@@ -5,9 +5,9 @@
5
class Command(NoArgsCommand):
6
option_list = NoArgsCommand.option_list + (
7
make_option('--plain', action='store_true', dest='plain',
8
- help='Tells Django to use plain Python, not IPython.'),
+ help='Tells Django to use plain Python, not IPython or bpython.'),
9
)
10
- 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."
11
shells = ['ipython', 'bpython']
12
requires_model_validation = False
13
0 commit comments