From ad81d34551adacee05795014ab8154ddc0665a49 Mon Sep 17 00:00:00 2001 From: Russell Schmidt Date: Thu, 16 Jan 2025 12:44:19 -0600 Subject: [PATCH] typo Co-authored-by: pdxlocations <117498748+pdxlocations@users.noreply.github.com> --- message_handlers/tx_handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/message_handlers/tx_handler.py b/message_handlers/tx_handler.py index 26fa094..1fa3de1 100644 --- a/message_handlers/tx_handler.py +++ b/message_handlers/tx_handler.py @@ -78,7 +78,7 @@ def on_response_traceroute(packet): + " (" + (str(msg_dict["snrBack"][idx] / 4) if msg_dict["snrBack"][idx] != UNK_SNR else "?") + "dB)" # End with destination of response (us) - route_str += " --> " + (get_name_from_number(packet["to"]) or f"{p['to']:08x}") \ + route_str += " --> " + (get_name_from_number(packet["to"]) or f"{packet['to']:08x}") \ + " (" + (str(msg_dict["snrBack"][-1] / 4) if msg_dict["snrBack"][-1] != UNK_SNR else "?") + "dB)" msg_str += route_str + "\n" # Print the route back to us