Signed-off-by: Jose A. Rivera <jarrpa@redhat.com>
@@ -1421,7 +1421,7 @@ class OpenShiftCLIConfig(object):
for key in sorted(self.config_options.keys()):
data = self.config_options[key]
if data['include'] \
- and (data['value'] or isinstance(data['value'], int)):
+ and (data['value'] is not None or isinstance(data['value'], int)):
if key == ascommalist:
val = ','.join(['{}={}'.format(kk, vv) for kk, vv in sorted(data['value'].items())])
else:
@@ -1399,7 +1399,7 @@ class OpenShiftCLIConfig(object):
@@ -1407,7 +1407,7 @@ class OpenShiftCLIConfig(object):
@@ -1393,7 +1393,7 @@ class OpenShiftCLIConfig(object):
@@ -1511,7 +1511,7 @@ class OpenShiftCLIConfig(object):
@@ -1536,7 +1536,7 @@ class OpenShiftCLIConfig(object):
@@ -1385,7 +1385,7 @@ class OpenShiftCLIConfig(object):
@@ -1391,7 +1391,7 @@ class OpenShiftCLIConfig(object):
@@ -1435,7 +1435,7 @@ class OpenShiftCLIConfig(object):
@@ -1402,7 +1402,7 @@ class OpenShiftCLIConfig(object):
@@ -1375,7 +1375,7 @@ class OpenShiftCLIConfig(object):
@@ -1394,7 +1394,7 @@ class OpenShiftCLIConfig(object):
@@ -1411,7 +1411,7 @@ class OpenShiftCLIConfig(object):
@@ -1414,7 +1414,7 @@ class OpenShiftCLIConfig(object):
@@ -1346,7 +1346,7 @@ class OpenShiftCLIConfig(object):
@@ -1403,7 +1403,7 @@ class OpenShiftCLIConfig(object):
@@ -1400,7 +1400,7 @@ class OpenShiftCLIConfig(object):
@@ -1445,7 +1445,7 @@ class OpenShiftCLIConfig(object):
@@ -1389,7 +1389,7 @@ class OpenShiftCLIConfig(object):
@@ -1441,7 +1441,7 @@ class OpenShiftCLIConfig(object):
@@ -1448,7 +1448,7 @@ class OpenShiftCLIConfig(object):
@@ -1387,7 +1387,7 @@ class OpenShiftCLIConfig(object):
@@ -1405,7 +1405,7 @@ class OpenShiftCLIConfig(object):
@@ -1447,7 +1447,7 @@ class OpenShiftCLIConfig(object):
@@ -1359,7 +1359,7 @@ class OpenShiftCLIConfig(object):
@@ -1436,7 +1436,7 @@ class OpenShiftCLIConfig(object):
@@ -597,7 +597,7 @@ class OpenShiftCLIConfig(object):