commit | 255181c1c98ce6eaa9459bf021cd6e0ab3b0ee1b | [log] [tgz] |
---|---|---|
author | Michael Walsh <micwalsh@us.ibm.com> | Tue Aug 07 15:06:23 2018 -0500 |
committer | Michael Walsh <micwalsh@us.ibm.com> | Wed Aug 15 18:39:29 2018 +0000 |
tree | 9ef21c101f86b16a20f49c07c9bfc984f1050f60 | |
parent | 6aa5a9e55e486a697df1a7cb90dd529b5747a061 [diff] |
var_funcs.py python3 changes - Use list() on filter() output Change-Id: I523209430bb83975044c6517717fb6aad7d18c0a Signed-off-by: Michael Walsh <micwalsh@us.ibm.com>
diff --git a/lib/var_funcs.py b/lib/var_funcs.py index 572cf6b..9fee346 100644 --- a/lib/var_funcs.py +++ b/lib/var_funcs.py
@@ -669,5 +669,5 @@ list_to_report function for details). """ - report_list = filter(None, out_buf.split("\n")) + report_list = list(filter(None, out_buf.split("\n"))) return list_to_report(report_list, **args)