Merge pull request #2228 from abadger/ziploader-constants

the ansible version constant is now in a different place
reviewable/pr18780/r1
Toshio Kuratomi 8 years ago
commit 148a0ddabf

@ -244,7 +244,7 @@ def main():
marker1 = re.sub(r'{mark}', 'END', marker) marker1 = re.sub(r'{mark}', 'END', marker)
if present and block: if present and block:
# Escape seqeuences like '\n' need to be handled in Ansible 1.x # Escape seqeuences like '\n' need to be handled in Ansible 1.x
if module.constants['ANSIBLE_VERSION'].startswith('1.'): if module.ansible_version.startswith('1.'):
block = re.sub('', block, '') block = re.sub('', block, '')
blocklines = [marker0] + block.splitlines() + [marker1] blocklines = [marker0] + block.splitlines() + [marker1]
else: else:

Loading…
Cancel
Save