1
0
Fork 0

Stupid little error

merge-requests/1/head
wgaylord 2018-12-18 21:21:58 -06:00
parent 04ba084a5a
commit 739fd839e7
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ def map_view():
def api_active_stations():
sations = []
for x in Stations:
sations.append([x["name"],[x["lat"],x["lng"]]])
sations.append([x["name"],{"lat":x["lat"],"lng":x["lng"]}])
return json.dumps(sations)
@app.route('/stations_from_sat/<string:norad>')