1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

blockinfile will always add newline at EOF (#2261)

This commit is contained in:
Hans-Joachim Kliemeck 2016-05-20 10:25:10 +02:00 committed by Matt Clay
parent fae2a50d4d
commit 393ea3293c

View file

@ -280,7 +280,9 @@ def main():
lines[n0:n0] = blocklines
if lines:
result = '\n'.join(lines)+'\n'
result = '\n'.join(lines)
if original.endswith('\n'):
result += '\n'
else:
result = ''
if original == result: