Merge pull request #2755 from Luflosi/fix-typo

Fix typo
This commit is contained in:
Sarah Hoffmann 2022-06-20 22:23:36 +02:00 committed by GitHub
commit 8de483a45b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -65,7 +65,7 @@ def setup_database_skeleton(dsn, rouser=None):
cnt = cur.scalar('SELECT count(*) FROM pg_user where usename = %s', cnt = cur.scalar('SELECT count(*) FROM pg_user where usename = %s',
(rouser, )) (rouser, ))
if cnt == 0: 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) "\n createuser %s", rouser, rouser)
raise UsageError('Missing read-only user.') raise UsageError('Missing read-only user.')