From cc41a4ea6caa07b104f8a6e6aebe743ffd8098d9 Mon Sep 17 00:00:00 2001 From: Amjith Ramanujam Date: Mon, 9 Mar 2015 23:49:27 -0700 Subject: [PATCH] Add as a placeholder for missingvalue. --- pgcli/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pgcli/main.py b/pgcli/main.py index eadc5d09..ff4091eb 100755 --- a/pgcli/main.py +++ b/pgcli/main.py @@ -350,7 +350,7 @@ def format_output(cur, headers, status, table_format): if is_expanded_output(): output.append(expanded_table(cur, headers)) else: - output.append(tabulate(cur, headers, tablefmt=table_format)) + output.append(tabulate(cur, headers, tablefmt=table_format, missingval='')) if status: # Only print the status if it's not None. output.append(status) return output