From ff63bb959a037d159daf491108ac7aa39da86352 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Fri, 27 Sep 2024 20:55:50 -0700 Subject: [PATCH] Update mesh_bot.py --- mesh_bot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mesh_bot.py b/mesh_bot.py index 70487c1..a2ac38e 100755 --- a/mesh_bot.py +++ b/mesh_bot.py @@ -608,9 +608,9 @@ def handle_whoami(message_from_id, deviceID, hop, snr, rssi, pkiStatus): str(get_name_from_number(message_from_id, 'long', deviceID) + " AKA, " +\ str(get_name_from_number(message_from_id, 'short', deviceID)) + " AKA, " +\ str(decimal_to_hex(message_from_id)) + f"\n") - msg += f"I see the signal strength is {rssi} and the SNR is {snr} with hop count of {hop} \n" + msg += f"I see the signal strength is {rssi} and the SNR is {snr} with hop count of {hop}" if pkiStatus[1] != 'ABC': - msg += f"Your PKI bit is {pkiStatus[0]} pubKey: {pkiStatus[1]}" + msg += f"\nYour PKI bit is {pkiStatus[0]} pubKey: {pkiStatus[1]}" loc = get_node_location(message_from_id, deviceID) if loc != [latitudeValue,longitudeValue]: