From 369034a64a1697a140d7fe8a1d6cbc41ce45716b Mon Sep 17 00:00:00 2001 From: Florent Le Coz Date: Tue, 8 Apr 2014 23:40:01 +0200 Subject: Fix a forgotten "self." that caused alt+k to traceback --- src/core/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/core/core.py b/src/core/core.py index c1813a7e..4b9a2e22 100644 --- a/src/core/core.py +++ b/src/core/core.py @@ -1402,7 +1402,7 @@ class Core(object): Tell the Keyboard object that the next key pressed by the user should be escaped. See Keyboard.get_user_input """ - keyboard.escape_next_key() + self.keyboard.escape_next_key() ####################### Commands and completions ############################## -- cgit v1.2.3