Co-authored-by: pdxlocations <117498748+pdxlocations@users.noreply.github.com>
This commit is contained in:
Russell Schmidt
2025-01-16 12:44:19 -06:00
committed by GitHub
parent 4c4c0d553e
commit ad81d34551
+1 -1
View File
@@ -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