From 45e9c1eccbaec008995213dc6a02e4190edcf401 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Sun, 22 Sep 2024 18:28:21 -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 a7ca260..557067a 100755 --- a/mesh_bot.py +++ b/mesh_bot.py @@ -509,9 +509,9 @@ def handle_whoami(message_from_id, deviceID, hop, snr, rssi, pkiStatus): 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" if pkiStatus[0]: - msg += f"Your encryption bit is {pkiStatus[0]} pubKey: {pkiStatus[1]}" + msg += f"Your PKI bit is {pkiStatus[0]} pubKey: {pkiStatus[1]}" else: - msg += f"Your encryption bit is {pkiStatus[0]}" + msg += f"Your PKI bit is {pkiStatus[0]}" loc = get_node_location(message_from_id, deviceID) if loc != [latitudeValue,longitudeValue]: