mirror of
https://github.com/markqvist/rnsh.git
synced 2025-07-01 09:06:41 -04:00
Fixed missing format string declarator
This commit is contained in:
parent
cde20121ea
commit
4da540f189
1 changed files with 1 additions and 1 deletions
|
@ -134,7 +134,7 @@ def tty_read_poll(fd: int) -> bytes:
|
||||||
except EOFError:
|
except EOFError:
|
||||||
raise
|
raise
|
||||||
except Exception as ex:
|
except Exception as ex:
|
||||||
module_logger.error("tty_read error: {ex}")
|
module_logger.error(f"tty_read error: {ex}")
|
||||||
return result
|
return result
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue