From f8cc580b990113ece19ff81df4260ec8160704f7 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Sun, 29 Sep 2024 15:01:45 -0700 Subject: [PATCH] Update mesh_bot.py --- mesh_bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mesh_bot.py b/mesh_bot.py index 231bfd0..8ef9bfa 100755 --- a/mesh_bot.py +++ b/mesh_bot.py @@ -600,7 +600,7 @@ def handle_history(message, nodeid, deviceID, isDM, lheard=False): # create the message from the buffer list buffer.reverse() # reverse the list to show the latest first for i in range(0, len(buffer)): - msg += f"{buffer[i][0]} seen {buffer[i][1]} ago" + msg += f"{buffer[i][0]}, {buffer[i][1]} ago" if i < len(buffer) - 1: msg += "\n" # add a new line if not the last line if i > 3: break # only return the last 4 nodes return msg