Update locationdata.py

This commit is contained in:
SpudGunMan
2024-06-19 16:33:35 -07:00
parent e96bb66ab2
commit ec4173c9fa
+1 -1
View File
@@ -26,6 +26,6 @@ def where_am_i(lat=0, lon=0):
if 'country' in address:
whereIam += " " + address['country']
whereIam += "Grid: " + mh.to_maiden(lat, lon)
whereIam += "Grid: " + mh.to_maiden(str(lat), str(lon))
return whereIam