diff options
Diffstat (limited to 'scripts/common/postgres.py')
-rw-r--r-- | scripts/common/postgres.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/common/postgres.py b/scripts/common/postgres.py index bff0720..bff4a84 100644 --- a/scripts/common/postgres.py +++ b/scripts/common/postgres.py @@ -24,5 +24,5 @@ def dbi(sql, values, **kwargs): print('`values` is a', type(values), 'but it needs to be tuple or list') sys.exit(1) if verbose is True: - print("Inserted and/or changed", cur.rowcount, "rows into db") + print("Inserted and/or changed", cur.rowcount, "rows in db") return True |