Fix missing f-str in ems msg sender err block

multi_client_order_mgt
Tyler Goodlet 2022-09-19 16:09:59 -04:00
parent 47f81b31af
commit 91397b85a4
1 changed files with 3 additions and 3 deletions

View File

@ -417,7 +417,7 @@ class Router(Struct):
for client_stream in self.clients.copy():
try:
await client_stream.send(msg)
except(
except (
trio.ClosedResourceError,
trio.BrokenResourceError,
):
@ -740,8 +740,8 @@ async def translate_and_relay_brokerd_events(
or not status_msg
):
log.warning(
'Received status for unknown dialog {oid}:\n'
'{fmsg}'
f'Received status for unknown dialog {oid}:\n'
f'{fmsg}'
)
continue