From cee66caf3bddc739622c4a2bf76a8b510de96240 Mon Sep 17 00:00:00 2001 From: Abhijeet Kasurde Date: Fri, 28 Nov 2025 07:32:58 -0800 Subject: [PATCH] review request Signed-off-by: Abhijeet Kasurde --- lib/ansible/plugins/filter/strftime.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ansible/plugins/filter/strftime.yml b/lib/ansible/plugins/filter/strftime.yml index f290d1b927f..11d1f23e2d2 100644 --- a/lib/ansible/plugins/filter/strftime.yml +++ b/lib/ansible/plugins/filter/strftime.yml @@ -5,7 +5,7 @@ DOCUMENTATION: description: - Using Python's L(strftime, https://docs.python.org/3/library/datetime.html#datetime.datetime.strftime) function, take a data formatting string and a date/time to create a formatted date. notes: - - This is a passthrough to Python's C(datetime.datetime.strftime), for a complete set of formatting options go to https://strftime.org/. + - This is a passthrough to Python's C(datetime.datetime.strftime), for a complete set of formatting options go to L(the Python documentation, https://docs.python.org/3/library/datetime.html#strftime-and-strptime-format-codes). - Before Ansible Core 2.21, this was based upon C(time.strftime) Python API. positional: _input, second, utc options: @@ -31,7 +31,7 @@ DOCUMENTATION: version_added: '2.14' EXAMPLES: | - # for a complete set of features go to https://strftime.org/ + # for a complete set of features go to https://docs.python.org/3/library/datetime.html#strftime-and-strptime-format-codes # Display year-month-day {{ '%Y-%m-%d' | strftime }}