1
0
mirror of https://github.com/dbcli/pgcli synced 2024-05-31 01:17:54 +00:00

Fix bug introduced in #1102.

This commit is contained in:
Irina Truong 2020-05-07 16:26:19 -07:00
parent bcb0c8bce7
commit 79890813e5

View File

@ -1075,7 +1075,7 @@ class PGCli(object):
def echo_via_pager(self, text, color=None):
if self.pgspecial.pager_config == PAGER_OFF or self.watch_command:
click.echo(text, color=color)
elif "pspg" in os.environ["PAGER"] and self.table_format == "csv":
elif "pspg" in os.environ.get("PAGER", "") and self.table_format == "csv":
click.echo_via_pager(text, color)
elif self.pgspecial.pager_config == PAGER_LONG_OUTPUT:
lines = text.split("\n")