fix errors for stop lookups

This commit is contained in:
Sanj 2012-09-11 16:43:22 +05:30
parent aaabf82ee5
commit 16696ec09c

View File

@ -48,13 +48,13 @@ def get_stops_for_string(s):
if len(stops_results) == 0: if len(stops_results) == 0:
return None return None
same_stops = [] same_stops = []
same_stops.append(stops[0]) same_stops.append(stops_results[0])
if len(stops_results) > 1: if len(stops_results) > 1:
for s in stops_results[1:]: for s in stops_results[1:]:
if s['properties']['official_name'] == stops[0]['properties']['official_name']: if s['properties']['official_name'] == same_stops[0]['properties']['official_name']:
same_stops.append(s) same_stops.append(s)
return { return {
'name': stops[0]['properties']['display_name'], 'name': same_stops[0]['properties']['display_name'],
'stops': same_stops 'stops': same_stops
} }