Skip to content

Commit 1094f82

Browse files
committed
fix(cli): fix #260
Signed-off-by: Chris Snow <[email protected]>
1 parent 9b29e86 commit 1094f82

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

hpecp/cli_utils.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,8 @@ def write(self, b):
8686

8787
io = MyStringIO()
8888
for item in data:
89-
TextOutput._dump_row(item, io)
89+
if item is not None:
90+
TextOutput._dump_row(item, io)
9091

9192
result = io.getvalue()
9293
io.close()

0 commit comments

Comments
 (0)