Fixed #17078: properly invoke IPython 0.12.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@17379 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Jacob Kaplan-Moss 2012-01-19 17:38:56 +00:00
parent 203c4fef4d
commit e8e4293a48
1 changed files with 2 additions and 3 deletions

View File

@ -13,9 +13,8 @@ class Command(NoArgsCommand):
def ipython(self):
try:
from IPython.frontend.terminal.embed import TerminalInteractiveShell
shell = TerminalInteractiveShell()
shell.mainloop()
from IPython import embed
embed()
except ImportError:
# IPython < 0.11
# Explicitly pass an empty list as arguments, because otherwise