dirtywords

portable text interface framework  https://pypi.python.org/pypi/dirtywords
git clone https://git.ce9e.org/dirtywords.git

commit
b1014a7eb16ad0c26792e385fe754cbd0374f039
parent
d0c680b0280e599cd2c4473e258bc7d79b5a5018
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2018-08-03 11:45
fix test

Diffstat

M dirtywords/pygame.py 2 +-

1 files changed, 1 insertions, 1 deletions


diff --git a/dirtywords/pygame.py b/dirtywords/pygame.py

@@ -30,7 +30,7 @@ class Screen(base.Screen):
   30    30                 return value
   31    31 
   32    32         if 0 <= ch < 256:
   33    -1             if chr(ch) in string.letters:
   -1    33             if chr(ch) in string.ascii_letters:
   34    34                 # capital letters on shift
   35    35                 if pygame.key.get_mods() & pygame.KMOD_SHIFT:
   36    36                     ch ^= 32