diff options
author | Florent Le Coz <louiz@louiz.org> | 2014-04-08 23:40:01 +0200 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2014-04-08 23:40:01 +0200 |
commit | 369034a64a1697a140d7fe8a1d6cbc41ce45716b (patch) | |
tree | 37a0863177604f63c316c2fd2ff8c5c97ed6f364 /src | |
parent | c9b163a3504d8c84812ab6fbd4a9b801a8f1a260 (diff) | |
download | poezio-369034a64a1697a140d7fe8a1d6cbc41ce45716b.tar.gz poezio-369034a64a1697a140d7fe8a1d6cbc41ce45716b.tar.bz2 poezio-369034a64a1697a140d7fe8a1d6cbc41ce45716b.tar.xz poezio-369034a64a1697a140d7fe8a1d6cbc41ce45716b.zip |
Fix a forgotten "self." that caused alt+k to traceback
Diffstat (limited to 'src')
-rw-r--r-- | src/core/core.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 ############################## |