From 9298bd19691ad9d7949fdd9465438e3237ac7b45 Mon Sep 17 00:00:00 2001 From: Borne Mace Date: Thu, 10 Mar 2016 23:49:05 -0800 Subject: [PATCH] fixed bug in host related property listing when the list is empty Jira-Issue: OPENSTACK-715 --- kollacli/commands/property.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kollacli/commands/property.py b/kollacli/commands/property.py index 3c793b6..f0dc425 100644 --- a/kollacli/commands/property.py +++ b/kollacli/commands/property.py @@ -287,13 +287,13 @@ class PropertyList(Lister): else: if self.is_long_flag: if self.is_global: - data.append(('', '', '', '', '')) + data.append(('', '', '', '')) else: data.append(('', '', '', '', '')) else: if self.is_global: data.append(('', '', '')) else: - data.append(('', '', '')) + data.append(('', '', '', '')) return data