From 05f18be4e0bc7cf1027d4714a3716173051115ae Mon Sep 17 00:00:00 2001 From: yi Date: Mon, 8 May 2017 13:08:27 -0400 Subject: [PATCH] fix bug in complete ways and relations query --- overpass/queries.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overpass/queries.py b/overpass/queries.py index 58d71fc9457..a70128ed629 100644 --- a/overpass/queries.py +++ b/overpass/queries.py @@ -4,7 +4,7 @@ class MapQuery(object): """Query to retrieve complete ways and relations in an area.""" - _QUERY_TEMPLATE = "(node({south},{west},{north},{east});<;);" + _QUERY_TEMPLATE = "(node({south},{west},{north},{east});<;>;);" def __init__(self, south, west, north, east): """