Mercurial > p > roundup > code
changeset 7717:2eb976e1de2a
fix: typo in variable name
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Thu, 21 Dec 2023 09:19:08 -0500 |
| parents | 0ccc6d3ba9f2 |
| children | 3da452f4a3ac |
| files | roundup/backends/back_postgresql.py |
| diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/roundup/backends/back_postgresql.py Tue Dec 19 08:56:14 2023 -0500 +++ b/roundup/backends/back_postgresql.py Thu Dec 21 09:19:08 2023 -0500 @@ -142,7 +142,7 @@ return finally: conn.close() - raise RuntimeError('10 attempts to create database failed when running: %s' % commandb) + raise RuntimeError('10 attempts to create database failed when running: %s' % command) def pg_command(cursor, command):
