From: Sarah Hoffmann Date: Mon, 20 Jun 2022 20:23:36 +0000 (+0200) Subject: Merge pull request #2755 from Luflosi/fix-typo X-Git-Tag: v4.1.0~24 X-Git-Url: https://git.openstreetmap.org/nominatim.git/commitdiff_plain/8de483a45b88e50b1aa89670f8020827b5c67c16?hp=42d16d82965fd4075fd1e6aa889f49772e1d09b9 Merge pull request #2755 from Luflosi/fix-typo Fix typo --- 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.')