From 9d587699ce94ce4a13f0a5aa2925c5b682c757f9 Mon Sep 17 00:00:00 2001 From: ofir123 Date: Sat, 30 Dec 2017 22:11:44 +0200 Subject: [PATCH] Table bugfix. --- pyprinter/table.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyprinter/table.py b/pyprinter/table.py index 8914dd1..8876b0f 100644 --- a/pyprinter/table.py +++ b/pyprinter/table.py @@ -91,7 +91,7 @@ def columns(self): if len(columns) == 0: columns = self._rows[0] if isinstance(self._rows[0], list) else self._rows[0].__dict__.keys() - return columns + return list(columns) @property def rows_list(self):