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

blockinfile: Fixes #1926 by comparing a marker to a whole line instead of a line prefix (#3339)

This commit is contained in:
Koki Nomura 2016-11-18 03:28:09 +09:00 committed by Matt Clay
parent cffd5601b6
commit 8ccf166a56

View file

@ -258,9 +258,9 @@ def main():
n0 = n1 = None
for i, line in enumerate(lines):
if line.startswith(marker0):
if line == marker0:
n0 = i
if line.startswith(marker1):
if line == marker1:
n1 = i
if None in (n0, n1):