Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/talogo.py
diff options
context:
space:
mode:
Diffstat (limited to 'talogo.py')
-rw-r--r--talogo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/talogo.py b/talogo.py
index 8af165d..2207d0d 100644
--- a/talogo.py
+++ b/talogo.py
@@ -841,7 +841,7 @@ def kbinput(lc):
lc.keyboard = ord(lc.tw.keypress[0])
else:
try:
- lc.keyboard = {'Escape': 27, 'space': 32, 'Return': 13, \
+ lc.keyboard = {'Escape': 27, 'space': 32, ' ': 32, 'Return': 13, \
'KP_Up': 2, 'KP_Down': 4, 'KP_Left': 1, 'KP_Right': 3,} \
[lc.tw.keypress]
except: