From c5823b4d01e00c64e08c49c6be350d890bf1e4e4 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Mon, 13 Jul 2009 17:25:12 -0400 Subject: [PATCH] Revert "default" shell back to classic, because of IPython's littering problem. --- pudb/debugger.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pudb/debugger.py b/pudb/debugger.py index 7412a89..b1f0e8d 100644 --- a/pudb/debugger.py +++ b/pudb/debugger.py @@ -849,22 +849,22 @@ class DebuggerUI(FrameVarInfoKeeper): urwid.ListBox([urwid.Text( "You've asked to enter a Python shell.\n\n" "You appear to have IPython installed. If you wish to use it, " - "you may hit '!' again or select the corresponding button on the " - "right. If you prefer the 'classic' Python shell, hit 'c' or " + "you may hit 'i' or select the corresponding button on the " + "right. If you prefer the 'classic' Python shell, hit '!' again or " "select that button instead.\n\n" "Sorry for bothering you, I won't ask again in this session." )]), [ - ("IPython", "ipython"), ("Classic", "classic"), + ("IPython", "ipython"), ("Cancel", False), ], focus_buttons=True, bind_enter_esc=False, title="Shell Requested", extra_bindings=[ - ("!", ipython), - ("c", classic), + ("!", classic), + ("i", ipython), ("esc", cancel), ])