Handle empty role definitions in YAML (v2)

This commit is contained in:
James Cammarata 2015-05-05 13:17:04 -05:00
commit fba5588028
2 changed files with 6 additions and 0 deletions

View file

@ -65,6 +65,9 @@ class RoleMetadata(Base):
which returns a list of RoleInclude objects
'''
if ds is None:
ds = []
current_role_path = None
if self._owner:
current_role_path = os.path.dirname(self._owner._role_path)