]> git.openstreetmap.org Git - nominatim.git/blobdiff - nominatim/clicmd/special_phrases.py
Replace "nominatim-update" with "nominatim".
[nominatim.git] / nominatim / clicmd / special_phrases.py
index 8198a4c39cf49ebde42e881c2133c0fe01fc95b5..99e825925ad63443b305543624cde60572740fee 100644 (file)
@@ -1,8 +1,8 @@
 """
-    Implementation of the 'import-special-phrases' command.
+    Implementation of the 'special-phrases' command.
 """
 import logging
-from nominatim.tools.special_phrases import import_from_wiki
+from nominatim.tools.special_phrases import SpecialPhrasesImporter
 from nominatim.db.connection import connect
 
 LOG = logging.getLogger()
@@ -17,13 +17,15 @@ 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:
-                import_from_wiki(args, db_connection)
+                SpecialPhrasesImporter(
+                    args.config, args.phplib_dir, db_connection
+                ).import_from_wiki()
         return 0