From 3ea87169ac7b11919ad1261927619bba2e984da6 Mon Sep 17 00:00:00 2001 From: Luflosi Date: Mon, 20 Jun 2022 20:41:00 +0200 Subject: [PATCH 1/1] Fix typo --- nominatim/tools/database_import.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nominatim/tools/database_import.py b/nominatim/tools/database_import.py index 50938c19..6195b44a 100644 --- a/nominatim/tools/database_import.py +++ b/nominatim/tools/database_import.py @@ -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.') -- 2.39.5