mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2025-08-03 20:56:06 -04:00
Fixed syntax error on linux module from keyboard_handler
This commit is contained in:
@@ -21,7 +21,7 @@ def parse(s):
|
|||||||
lst.remove(item)
|
lst.remove(item)
|
||||||
#end if
|
#end if
|
||||||
if len(lst) > 1: #more than one key, parse error
|
if len(lst) > 1: #more than one key, parse error
|
||||||
raise ValueError, 'unknown modifier %s' % lst[0]
|
raise ValueError('unknown modifier %s' % lst[0])
|
||||||
return (m, lst[0].lower())
|
return (m, lst[0].lower())
|
||||||
class AtspiThread(threading.Thread):
|
class AtspiThread(threading.Thread):
|
||||||
def run(self):
|
def run(self):
|
||||||
|
Reference in New Issue
Block a user