From 97aa167e0b0f7f33ddfd133c7cbcb95b3105a7b9 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Wed, 19 Jun 2024 15:36:32 -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 54b5a25..dba9269 100644 --- a/mesh-bot.py +++ b/mesh-bot.py @@ -81,7 +81,7 @@ def auto_response(message,snr,rssi,hop,message_from_id): elif "whereami" in message.lower(): location = get_node_location(message_from_id) print (f"Using Reported Location: {location}") - where = where_am_i(location[0],location[1]) + where = where_am_i(str(location[0]),str(location[1])) bot_response = where else: bot_response = "I'm sorry, I'm afraid I can't do that."