X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/9685c68e30ae77cf0b0b196cf148becdfe7bcb5c..6ce6f62b8ef7cec8b5950293516845e319dd5f06:/nominatim/db/status.py diff --git a/nominatim/db/status.py b/nominatim/db/status.py index b2eb6a44..c2ff63db 100644 --- a/nominatim/db/status.py +++ b/nominatim/db/status.py @@ -35,9 +35,9 @@ def compute_database_date(conn): "URL used: %s", node_url) raise UsageError("Bad API data.") - LOG.debug("Found timestamp %s", match[1]) + LOG.debug("Found timestamp %s", match.group(1)) - return dt.datetime.strptime(match[1], ISODATE_FORMAT).replace(tzinfo=dt.timezone.utc) + return dt.datetime.strptime(match.group(1), ISODATE_FORMAT).replace(tzinfo=dt.timezone.utc) def set_status(conn, date, seq=None, indexed=True):