From e8fbbb7306430478dec55d2c963eed116d8330cc Mon Sep 17 00:00:00 2001 From: Scott Gasch Date: Tue, 8 Feb 2022 17:46:56 -0800 Subject: More cleanup, yey! --- input_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'input_utils.py') diff --git a/input_utils.py b/input_utils.py index a166d7a..7d5e180 100644 --- a/input_utils.py +++ b/input_utils.py @@ -37,7 +37,7 @@ def single_keystroke_response( try: while True: response = readchar.readchar() - logger.debug(f'Keystroke: {ord(response)}') + logger.debug('Keystroke: 0x%x', ord(response)) if response in valid_responses: break if ord(response) in os_special_keystrokes: -- cgit v1.3