X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/76b1885595df885cab439372c72f45c9e5c01471..3d58254462289cad257cb96d60b7a24f8e7fc8da:/nominatim/clicmd/freeze.py diff --git a/nominatim/clicmd/freeze.py b/nominatim/clicmd/freeze.py index 8a6c928e..85eb1b4a 100644 --- a/nominatim/clicmd/freeze.py +++ b/nominatim/clicmd/freeze.py @@ -1,3 +1,9 @@ +# SPDX-License-Identifier: GPL-2.0-only +# +# This file is part of Nominatim. (https://nominatim.org) +# +# Copyright (C) 2022 by the Nominatim developer community. +# For a full list of authors see the git log. """ Implementation of the 'freeze' subcommand. """ @@ -31,6 +37,6 @@ class SetupFreeze: with connect(args.config.get_libpq_dsn()) as conn: freeze.drop_update_tables(conn) - freeze.drop_flatnode_file(args.config.FLATNODE_FILE) + freeze.drop_flatnode_file(str(args.config.get_path('FLATNODE_FILE'))) return 0