1
0
Fork 0
This commit is contained in:
Irina Truong 2022-03-01 20:15:05 -08:00
parent 2eef64c8ce
commit 00bed0bdad
1 changed files with 1 additions and 1 deletions

View File

@ -1550,7 +1550,7 @@ def format_output(title, cur, headers, status, settings):
def format_status(cur, status):
# redshift does not return rowcount as part of status.
# See https://github.com/dbcli/pgcli/issues/1320
if cur and hasattr(cur, 'rowcount') and cur.rowcount is not None:
if cur and hasattr(cur, "rowcount") and cur.rowcount is not None:
if status and not status.endswith(str(cur.rowcount)):
status += " %s" % cur.rowcount
return status