summaryrefslogtreecommitdiff
path: root/input_utils.py
diff options
context:
space:
mode:
authorScott Gasch <[email protected]>2022-02-08 17:46:56 -0800
committerScott Gasch <[email protected]>2022-02-08 17:46:56 -0800
commite8fbbb7306430478dec55d2c963eed116d8330cc (patch)
tree28c61b43d11df95b0d70d7f12eba139e02a3942e /input_utils.py
parent0d63d44ac89aab38fe95f36497adaf95110ab949 (diff)
More cleanup, yey!
Diffstat (limited to 'input_utils.py')
-rw-r--r--input_utils.py2
1 files changed, 1 insertions, 1 deletions
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: