Ticket #2073: django_core_management.diff
File django_core_management.diff, 541 bytes (added by , 18 years ago) |
---|
-
django/core/management.py
=== django/core/management.py ==================================================================
1056 1056 # Don't bother loading IPython, because the user wants plain Python. 1057 1057 raise ImportError 1058 1058 import IPython 1059 shell = IPython.Shell.IPShell() 1059 # don't pass through arguments 1060 shell = IPython.Shell.IPShell(argv=[]) 1060 1061 shell.mainloop() 1061 1062 except ImportError: 1062 1063 import code