X-Git-Url: https://wannabe.guru.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=input_utils.py;h=77094daaa7a70cd83ebf0e2b5ba0adac311d2b01;hb=532df2c5b57c7517dfb3dddd8c1358fbadf8baf3;hp=a166d7a4169e56937e8bb63c4398aff1abc52564;hpb=31c81f6539969a5eba864d3305f9fb7bf716a367;p=python_utils.git diff --git a/input_utils.py b/input_utils.py index a166d7a..77094da 100644 --- a/input_utils.py +++ b/input_utils.py @@ -1,5 +1,7 @@ #!/usr/bin/env python3 +# © Copyright 2021-2022, Scott Gasch + """Utilities related to user input.""" import logging @@ -37,7 +39,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: