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: