diff --git a/vmware_nsx/shell/admin/plugins/common/formatters.py b/vmware_nsx/shell/admin/plugins/common/formatters.py index 28c66043b1..13873debb8 100644 --- a/vmware_nsx/shell/admin/plugins/common/formatters.py +++ b/vmware_nsx/shell/admin/plugins/common/formatters.py @@ -67,5 +67,5 @@ def tabulate_results(data): columns = data.pop(0) table = prettytable.PrettyTable(["%s" % col for col in columns]) for contents in data: - table.add_row(["%s" % contents]) + table.add_row(["%s" % col for col in contents]) return table