From f7db428375bc39ce3e71c5a595dcd53bfe0d7425 Mon Sep 17 00:00:00 2001 From: FloMiau <37121807+FloMiau@users.noreply.github.com> Date: Thu, 9 Jul 2020 18:58:39 +0200 Subject: [PATCH] update documentation link to python 3 (#70509) update the docs link for strftime on the filters page to point to the python3 docs --- docs/docsite/rst/user_guide/playbooks_filters.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docsite/rst/user_guide/playbooks_filters.rst b/docs/docsite/rst/user_guide/playbooks_filters.rst index e7106910cef..13ec0d19b56 100644 --- a/docs/docsite/rst/user_guide/playbooks_filters.rst +++ b/docs/docsite/rst/user_guide/playbooks_filters.rst @@ -1602,7 +1602,7 @@ To format a date using a string (like with the shell date command), use the "str {{ '%Y-%m-%d' | strftime(0) }} # => 1970-01-01 {{ '%Y-%m-%d' | strftime(1441357287) }} # => 2015-09-04 -.. note:: To get all string possibilities, check https://docs.python.org/2/library/time.html#time.strftime +.. note:: To get all string possibilities, check https://docs.python.org/3/library/time.html#time.strftime Getting Kubernetes resource names =================================