Commit c41a23a3 by Michael DeHaan

Complete removal/refactoring of conditional deprecations.

parent 8e5b7d30
......@@ -165,6 +165,9 @@ def is_changed(result):
def check_conditional(conditional, basedir, inject, fail_on_undefined=False):
if conditional is None or conditional == '':
return True
if isinstance(conditional, list):
for x in conditional:
if not check_conditional(x, basedir, inject, fail_on_undefined=fail_on_undefined):
......
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