X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/efafa5271957fb54b356ec1c90e8613f14de40d4..aaf2b6032eb3297aeb20b5c98223e9da734f56d4:/nominatim/db/properties.py diff --git a/nominatim/db/properties.py b/nominatim/db/properties.py index 19c09006..27020487 100644 --- a/nominatim/db/properties.py +++ b/nominatim/db/properties.py @@ -27,6 +27,9 @@ def get_property(conn, name): """ Return the current value of the given propery or None if the property is not set. """ + if not conn.table_exists('nominatim_properties'): + return None + with conn.cursor() as cur: cur.execute('SELECT value FROM nominatim_properties WHERE property = %s', (name, ))