]> git.openstreetmap.org Git - nominatim.git/commitdiff
correct parameter name in query CLI
authormarc tobias <mtmail@gmx.net>
Wed, 20 Jan 2021 20:09:41 +0000 (21:09 +0100)
committermarc tobias <mtmail@gmx.net>
Wed, 20 Jan 2021 20:09:41 +0000 (21:09 +0100)
nominatim/cli.py
nominatim/tools/exec_utils.py

index 34b19d7da41205142a90483b2a3bb86d5046f7be..70481b4a6fd86cbc290a676a992ae4fe40122cef 100644 (file)
@@ -494,7 +494,7 @@ STRUCTURED_QUERY = (
     ('county', 'county'),
     ('state', 'state'),
     ('country', 'country'),
-    ('postcalcode', 'postcode')
+    ('postalcode', 'postcode')
 )
 
 EXTRADATA_PARAMS = (
index ca30b2f74b7b83fdec79959a7d2eed936d3e3dc4..d5b08392ab4320ed67b25f2a5ac0f12a195a125d 100644 (file)
@@ -34,7 +34,7 @@ def run_api_script(endpoint, project_dir, extra_env=None, phpcgi_bin=None,
 
         The function needs a project directory that contains the website
         directory with the scripts to be executed. The scripts will be run
-        using php_cgi. Query parameters can be addd as named arguments.
+        using php_cgi. Query parameters can be added as named arguments.
 
         Returns the exit code of the script.
     """