Fix calls to three_words and six_words
This commit is contained in:
parent
42121d9cca
commit
944957e9cd
4
app.py
4
app.py
|
@ -52,8 +52,8 @@ def showMapFromLatLng(lat, lng):
|
|||
@get('/api/<lat:float>,<lng:float>')
|
||||
def latLngToHash(lat, lng):
|
||||
try:
|
||||
three = these.three_words((lat,lng))
|
||||
six = these.six_words((lat,lng))
|
||||
three = these.three_words(lat,lng)
|
||||
six = these.six_words(lat,lng)
|
||||
return {'three': three, 'six': six}
|
||||
except:
|
||||
return {}
|
||||
|
|
Loading…
Reference in New Issue