]> git.openstreetmap.org Git - nominatim.git/blobdiff - nominatim/cli.py
check for existance of custom .env before opening
[nominatim.git] / nominatim / cli.py
index 47b25c17862bc3a3fb2843ab79b04a07a3180b7e..20a9c5f167c225c17d358d9a726e034e7a9618c1 100644 (file)
@@ -121,7 +121,7 @@ class UpdateAddData:
     """\
     Add additional data from a file or an online source.
 
-    Data is only imported, not indexed. You need to call `nominatim-update index`
+    Data is only imported, not indexed. You need to call `nominatim index`
     to complete the process.
     """
 
@@ -148,11 +148,8 @@ class UpdateAddData:
     @staticmethod
     def run(args):
         if args.tiger_data:
-            return tiger_data.add_tiger_data(args.config.get_libpq_dsn(),
-                                             args.tiger_data,
-                                             args.threads or 1,
-                                             args.config,
-                                             args.sqllib_dir)
+            return tiger_data.add_tiger_data(args.tiger_data,
+                                             args.config, args.threads or 1)
 
         params = ['update.php']
         if args.file: