]> git.openstreetmap.org Git - nominatim.git/commitdiff
Fix typo
authorLuflosi <luflosi@luflosi.de>
Mon, 20 Jun 2022 18:41:00 +0000 (20:41 +0200)
committerLuflosi <luflosi@luflosi.de>
Mon, 20 Jun 2022 18:41:00 +0000 (20:41 +0200)
nominatim/tools/database_import.py

index 50938c19abf2e02fa1ad7647d64a911064278799..6195b44a2fc60593513dacabaa6644d6d3338f24 100644 (file)
@@ -65,7 +65,7 @@ def setup_database_skeleton(dsn, rouser=None):
                 cnt = cur.scalar('SELECT count(*) FROM pg_user where usename = %s',
                                  (rouser, ))
                 if cnt == 0:
-                    LOG.fatal("Web user '%s' does not exists. Create it with:\n"
+                    LOG.fatal("Web user '%s' does not exist. Create it with:\n"
                               "\n      createuser %s", rouser, rouser)
                     raise UsageError('Missing read-only user.')