Index: django/core/management/commands/shell.py
===================================================================
--- django/core/management/commands/shell.py	(revision 17016)
+++ django/core/management/commands/shell.py	(working copy)
@@ -14,7 +14,9 @@
     def ipython(self):
         try:
             from IPython.frontend.terminal.embed import TerminalInteractiveShell
-            shell = TerminalInteractiveShell()
+            from IPython.frontend.terminal.ipapp import load_default_config
+            config = load_default_config()
+            shell = TerminalInteractiveShell(config=config)
             shell.mainloop()
         except ImportError:
             # IPython < 0.11
