Commit b5f3e840 by Brian Coca

now allows for empty vars sections, returns empty dict

fixes #11532
parent 55366bdc
...@@ -162,6 +162,8 @@ class Play(Base, Taggable, Become): ...@@ -162,6 +162,8 @@ class Play(Base, Taggable, Become):
raise ValueError raise ValueError
all_vars = combine_vars(all_vars, item) all_vars = combine_vars(all_vars, item)
return all_vars return all_vars
elif ds is None:
return {}
else: else:
raise ValueError raise ValueError
except ValueError: except ValueError:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment