From bbca98ae8e637ac9aa9696e0b0738ebca7155a63 Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Sat, 1 Sep 2018 22:54:13 -0700 Subject: [PATCH] Fix PEP8 issue. --- lib/ansible/modules/files/lineinfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/files/lineinfile.py b/lib/ansible/modules/files/lineinfile.py index f9f044d9d2..8469b76df0 100644 --- a/lib/ansible/modules/files/lineinfile.py +++ b/lib/ansible/modules/files/lineinfile.py @@ -45,7 +45,7 @@ options: - The regular expression to look for in every line of the file. - For C(state=present), the pattern to replace if found. Only the last line found will be replaced. - For C(state=absent), the pattern of the line(s) to remove. - - If the regular expression is not matched, the line will be + - If the regular expression is not matched, the line will be added to the file in keeping with`insertbefore` or `insertafter` settings. - Uses Python regular expressions. See U(http://docs.python.org/2/library/re.html).