update documentation link to python 3 (#70509)

update the docs link for strftime on the filters page to point to the python3 docs
This commit is contained in:
FloMiau 2020-07-09 18:58:39 +02:00 committed by GitHub
parent 64c2cb273f
commit f7db428375
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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
=================================