From ec18fc3e3309f4d4da4ff55ea135f9b3b814fec6 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Wed, 19 Jun 2024 14:35:30 -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 f34315c..a988e7a 100644 --- a/mesh-bot.py +++ b/mesh-bot.py @@ -216,7 +216,7 @@ def get_node_location(number): for node in interface.nodes.values(): if number == node['num']: print (node) - if 'latitudeI' in node: + if 'latitude' in node: lat = node['latitude'] lon = node['longitude'] position = (lat,lon)