]> git.openstreetmap.org Git - nominatim.git/blobdiff - nominatim/tools/exec_utils.py
Changed phrase_settings.py to phrase-settings.json and added migration function for...
[nominatim.git] / nominatim / tools / exec_utils.py
index b476c1231d130099bf1ca3ee321bcceaf52d382e..e6b9d8d4d15f032cfc1bdf3312f764546b6960f7 100644 (file)
@@ -134,7 +134,7 @@ def run_osm2pgsql(options):
 def get_url(url):
     """ Get the contents from the given URL and return it as a UTF-8 string.
     """
-    headers = {"User-Agent" : "Nominatim/" + NOMINATIM_VERSION}
+    headers = {"User-Agent" : "Nominatim/{0[0]}.{0[1]}.{0[2]}-{0[3]}".format(NOMINATIM_VERSION)}
 
     try:
         with urlrequest.urlopen(urlrequest.Request(url, headers=headers)) as response: