X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/b7f6c7c76a3defda86569f4189dc0bfc99af2d45..f5e52e748f0a4275e3238e51c47de2ddccfea0ff:/nominatim/db/properties.py?ds=sidebyside diff --git a/nominatim/db/properties.py b/nominatim/db/properties.py index 3624c950..40cb262e 100644 --- a/nominatim/db/properties.py +++ b/nominatim/db/properties.py @@ -12,7 +12,7 @@ from typing import Optional, cast from nominatim.db.connection import Connection def set_property(conn: Connection, name: str, value: str) -> None: - """ Add or replace the propery with the given name. + """ Add or replace the property with the given name. """ with conn.cursor() as cur: cur.execute('SELECT value FROM nominatim_properties WHERE property = %s',