Skip to content

Commit

Permalink
Fix simple group
Browse files Browse the repository at this point in the history
  • Loading branch information
ezh committed Feb 21, 2020
1 parent f86eb91 commit b6bfe5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cloudselect/group/simple.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def run(self, name, metadata):
for key_part in key.split("."):
try:
value = value.get(key_part)
if not value:
if value is None:
self.log.debug("%s: Unable to find key %s", name, key_part)
break
except (AttributeError, NameError):
Expand Down

0 comments on commit b6bfe5f

Please sign in to comment.