Skip to content

Commit 43ae6a2

Browse files
committed
fix: incorrect log after keypress
1 parent 4b87e2f commit 43ae6a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

UIFunc.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -872,7 +872,7 @@ def __str__(self):
872872

873873
def summarystr(self):
874874
if self.event_type == 'EK':
875-
return 'key {0} {1} after {1}ms'.format(self.action[1], self.message[4:], self.delay)
875+
return 'key {0} {1} after {2}ms'.format(self.action[1], self.message[4:], self.delay)
876876
else:
877877
return '{0} after {1}ms'.format(self.message, self.delay)
878878

0 commit comments

Comments
 (0)