From 42d773d3212cc47a659945fce8428103eb2c4efc Mon Sep 17 00:00:00 2001 From: Julia Kreger Date: Thu, 11 Jun 2015 15:43:31 -0400 Subject: [PATCH] Correct CSV processing in inventory Late changes due to suggestions partially broke CSV processing such that values were not properly evaluated thus resulting in values not being included in output. Change-Id: I90a29741149d7718175fceb0f77071e4ce13ef03 --- playbooks/inventory/bifrost_inventory.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playbooks/inventory/bifrost_inventory.py b/playbooks/inventory/bifrost_inventory.py index 742456c1f..61cd8ffcd 100755 --- a/playbooks/inventory/bifrost_inventory.py +++ b/playbooks/inventory/bifrost_inventory.py @@ -137,7 +137,7 @@ def _prepare_inventory(): def _val_or_none(array, location): """Return any value that has a length""" try: - if not array[location]: + if len(array[location]) > 0: return array[location] return None except IndexError: