X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/2c19bd5ea38fb7474d0ca530fdab7ae76cee965b..c495ce097916063327460cfa2cc6e3fcccac4df2:/nominatim/clicmd/special_phrases.py diff --git a/nominatim/clicmd/special_phrases.py b/nominatim/clicmd/special_phrases.py index a35a9742..99e82592 100644 --- a/nominatim/clicmd/special_phrases.py +++ b/nominatim/clicmd/special_phrases.py @@ -1,5 +1,5 @@ """ - Implementation of the 'import-special-phrases' command. + Implementation of the 'special-phrases' command. """ import logging from nominatim.tools.special_phrases import SpecialPhrasesImporter @@ -17,12 +17,12 @@ class ImportSpecialPhrases: @staticmethod def add_args(parser): group = parser.add_argument_group('Input arguments') - group.add_argument('--from-wiki', action='store_true', + group.add_argument('--import-from-wiki', action='store_true', help='Import special phrases from the OSM wiki to the database.') @staticmethod def run(args): - if args.from_wiki: + if args.import_from_wiki: LOG.warning('Special phrases importation starting') with connect(args.config.get_libpq_dsn()) as db_connection: SpecialPhrasesImporter(