From 92d155acf559ec7c3c859767f2256793dd251822 Mon Sep 17 00:00:00 2001
From: "louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13"
 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13>
Date: Fri, 10 Sep 2010 22:34:21 +0000
Subject: fixed #1825

---
 src/keyboard.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'src')

diff --git a/src/keyboard.py b/src/keyboard.py
index 6b6c43f7..4a577d16 100644
--- a/src/keyboard.py
+++ b/src/keyboard.py
@@ -51,8 +51,8 @@ def read_char(s):
             return  "^"+chr(first + 64)
         if first == 27:
             (first, c) = get_next_byte(s)
-            if not isinstance(first, int): # Keyboard special, like KEY_HOME etc
-                return char
+            if not isinstance(first, int):
+                return None
             return "M-"+chr(first)
     if 194 <= first:
         (code, c) = get_next_byte(s) # 2 bytes char
-- 
cgit v1.2.3