Skip to content

Commit

Permalink
fix: incorrect log after keypress
Browse files Browse the repository at this point in the history
  • Loading branch information
Monomux committed Jul 28, 2022
1 parent 4b87e2f commit 43ae6a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UIFunc.py
Original file line number Diff line number Diff line change
Expand Up @@ -872,7 +872,7 @@ def __str__(self):

def summarystr(self):
if self.event_type == 'EK':
return 'key {0} {1} after {1}ms'.format(self.action[1], self.message[4:], self.delay)
return 'key {0} {1} after {2}ms'.format(self.action[1], self.message[4:], self.delay)
else:
return '{0} after {1}ms'.format(self.message, self.delay)

Expand Down

0 comments on commit 43ae6a2

Please sign in to comment.