From 11ba30183e40a3fb4dacb16b10e8ebdc0d956cf4 Mon Sep 17 00:00:00 2001 From: Valentin Krasontovitsch Date: Thu, 10 Sep 2020 16:19:26 +0200 Subject: [PATCH] Docs(lineinfile): Update link to python regex docs (#71688) There was a link still pointing at the python2 documentation. --- lib/ansible/modules/lineinfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/lineinfile.py b/lib/ansible/modules/lineinfile.py index d3bd1ca3454..4e856e50842 100644 --- a/lib/ansible/modules/lineinfile.py +++ b/lib/ansible/modules/lineinfile.py @@ -40,7 +40,7 @@ options: settings. - When modifying a line the regexp should typically match both the initial state of the line as well as its state after replacement by C(line) to ensure idempotence. - - Uses Python regular expressions. See U(http://docs.python.org/2/library/re.html). + - Uses Python regular expressions. See U(https://docs.python.org/3/library/re.html). type: str aliases: [ regex ] version_added: '1.7'