X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/c4f22a42eba499ed1854c5967b2e3932fe9b3896..5c2c0604805452f8235e7574b7e4986f9f89802e:/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, ))