download_gtfs.py: feed["spec"] is not "GTFS"

Signed-off-by: Yellowhat <yellowhat46@gmail.com>
This commit is contained in:
yellowhat 2022-07-23 11:25:05 +01:00 committed by Alexander Borsuk
parent 0745268533
commit 2d501153e9

View file

@ -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()