diff --git a/tools/python/transit/gtfs/download_gtfs.py b/tools/python/transit/gtfs/download_gtfs.py index 886e2348cd..d1c808caa8 100644 --- a/tools/python/transit/gtfs/download_gtfs.py +++ b/tools/python/transit/gtfs/download_gtfs.py @@ -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() \ No newline at end of file + main()