X-Git-Url: https://git.openstreetmap.org/nominatim.git/blobdiff_plain/e221eaa97711f25c85d2c0dedc53f1de1fd6fc7f..40b87bbadf2f6eabdc94a125b83a83cdc7fecc4e:/nominatim/clicmd/refresh.py diff --git a/nominatim/clicmd/refresh.py b/nominatim/clicmd/refresh.py index ea605ea0..afafe4a8 100644 --- a/nominatim/clicmd/refresh.py +++ b/nominatim/clicmd/refresh.py @@ -110,7 +110,7 @@ class UpdateRefresh: if args.word_counts: LOG.warning('Recompute word statistics') - self._get_tokenizer(args.config).update_statistics() + self._get_tokenizer(args.config).update_statistics(args.config) if args.address_levels: LOG.warning('Updating address levels') @@ -128,7 +128,7 @@ class UpdateRefresh: LOG.warning('Import secondary importance raster data from %s', args.project_dir) if refresh.import_secondary_importance(args.config.get_libpq_dsn(), args.project_dir) > 0: - LOG.fatal('FATAL: Cannot update sendary importance raster data') + LOG.fatal('FATAL: Cannot update secondary importance raster data') return 1 if args.functions: @@ -141,10 +141,10 @@ class UpdateRefresh: if args.wiki_data: data_path = Path(args.config.WIKIPEDIA_DATA_PATH or args.project_dir) - LOG.warning('Import wikipdia article importance from %s', data_path) + LOG.warning('Import wikipedia article importance from %s', data_path) if refresh.import_wikipedia_articles(args.config.get_libpq_dsn(), data_path) > 0: - LOG.fatal('FATAL: Wikipedia importance dump file not found') + LOG.fatal('FATAL: Wikipedia importance file not found in %s', data_path) return 1 # Attention: importance MUST come after wiki data import.