forked from organicmaps/organicmaps
download_gtfs.py: feed["spec"]
is not "GTFS"
Signed-off-by: Yellowhat <yellowhat46@gmail.com>
This commit is contained in:
parent
0745268533
commit
2d501153e9
1 changed files with 2 additions and 2 deletions
|
@ -60,7 +60,7 @@ def get_feeds_links(data):
|
|||
gtfs_feeds_urls = []
|
||||
|
||||
for feed in data:
|
||||
if feed["spec"] != "gtfs":
|
||||
if feed["spec"].lower() != "gtfs":
|
||||
continue
|
||||
|
||||
if "urls" in feed and feed["urls"] is not None and feed["urls"]:
|
||||
|
@ -268,4 +268,4 @@ def main():
|
|||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
main()
|
||||
|
|
Loading…
Add table
Reference in a new issue