Skip to content

Commit a57844e

Browse files
committed
Typo in python
1 parent 6148f4a commit a57844e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pages/_locations/vic/wyndham.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ type: Theme Node
77
theme: TBA
88
eventbrite:
99
location:
10-
lat: 0.0
11-
lat: 0.0
10+
lat: -37.9119
11+
lon: 144.6534
1212
venue:
1313
name:
1414
address: TBA

python/regions_locations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def main():
5959
latlong = location[8].split(',')
6060
f.write('location: \n')
6161
f.write(' lat: ' + latlong[0] + '\n')
62-
f.write(' lat: ' + latlong[1] + '\n')
62+
f.write(' lon: ' + latlong[1] + '\n')
6363

6464
f.write('venue: \n')
6565
f.write(' name: ' + location[9] + '\n')

0 commit comments

Comments
 (0)