From: Jacob Alexander Date: Sun, 16 Aug 2015 21:41:19 +0000 (-0700) Subject: Fixing '~' interpreting bug. X-Git-Url: https://git.donarmstrong.com/?p=kiibohd-kll.git;a=commitdiff_plain;h=ea854aa95fffa656bcb84068cb63aba83bfe39e8 Fixing '~' interpreting bug. --- diff --git a/kll.py b/kll.py index aab66d2..accbca6 100755 --- a/kll.py +++ b/kll.py @@ -273,8 +273,7 @@ def make_seqString( token ): ( ":", 0x01 ), ( "^", -0x10 ), ( "_", -0x18 ), - ( "{}|", -0x1E ), - ( "~", -0x20 ), + ( "{}|~", -0x1E ), ( "@", -0x32 ), ( "?", -0x38 ), )