From 08bcd89949cbc3f61268762ad58c5236036376da Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Fri, 29 Sep 2023 11:49:23 +0100 Subject: [PATCH] Switch to api.openstreetmap.org API host Closes: #655 --- matcher/osm_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matcher/osm_api.py b/matcher/osm_api.py index 0472fb8..2237c55 100644 --- a/matcher/osm_api.py +++ b/matcher/osm_api.py @@ -8,7 +8,7 @@ from . import model, utils -base = "https://www.openstreetmap.org/api/0.6/" +base = "https://api.openstreetmap.org/api/0.6/" def get_changeset(changeset_id: int) -> lxml.etree._Element: