now allows for empty vars sections, returns empty dict

fixes #11532
pull/11534/head
Brian Coca 9 years ago
parent 55366bdc6d
commit b5f3e84014

@ -162,6 +162,8 @@ class Play(Base, Taggable, Become):
raise ValueError
all_vars = combine_vars(all_vars, item)
return all_vars
elif ds is None:
return {}
else:
raise ValueError
except ValueError:

Loading…
Cancel
Save