summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAmjith Ramanujam <amjith.r@gmail.com>2015-01-07 23:47:45 -0800
committerAmjith Ramanujam <amjith.r@gmail.com>2015-01-07 23:47:55 -0800
commit2e4545c3deff1c3b474ce2884e0a8e8d0101842a (patch)
tree8d406b820cc1bbe0276d220b29e1813cd8b5b3a2
parent1f850df753cae1b24c5be218c73728abd18ef89c (diff)
Fix the issue with bug for displaying multiple tables.
-rwxr-xr-xpgcli/main.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pgcli/main.py b/pgcli/main.py
index 61c50736..e6c9d9aa 100755
--- a/pgcli/main.py
+++ b/pgcli/main.py
@@ -112,7 +112,7 @@ def cli(database, user, password, host, port):
if status: # Only print the status if it's not None.
output.append(status)
_logger.debug("status: %r", status)
- click.echo_via_pager('\n'.join(output))
+ click.echo_via_pager('\n'.join(output))
except Exception as e:
_logger.error("sql: %r, error: %r", document.text, e)
_logger.error("traceback: %r", traceback.format_exc())