Skip to content

Commit

Permalink
Changed manage.py shell's help text to reflect that it can invoke b…
Browse files Browse the repository at this point in the history
…python.
  • Loading branch information
alex committed Jul 10, 2012
1 parent 828f7b6 commit 76d5daa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions django/core/management/commands/shell.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
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

Expand Down

0 comments on commit 76d5daa

Please sign in to comment.