diff --git a/templates/map.html b/templates/map.html
index 8de61ac..9534cd3 100644
--- a/templates/map.html
+++ b/templates/map.html
@@ -17,7 +17,7 @@
let map=L.map("map",{center:[38.22,-85.7],zoom:12,layers:[L.tileLayer("https://tile.thunderforest.com/transport/{z}/{x}/{y}.png?apikey=cf957cde4a7b40bbb49479c8fa4d60f7")]});
let stops={{stops|safe}};
for (stop in stops){
- L.circle(stops[stop][0]).bindPopup(`${stops[stop][1]} (#${stop})`).addTo(map)
+ L.circle(stops[stop][0]).bindPopup(`${stops[stop][1]} (#${stop})`).addTo(map)
}
let busIcon=L.icon({iconUrl:'static/bus.ico',iconSize:[32,32]})
let layerControl=L.control.layers().addTo(map);