From b3c686f4c547480af521f4ec4d0b41a890aad394 Mon Sep 17 00:00:00 2001 From: Tim Whittington Date: Tue, 16 Aug 2016 02:41:55 +1200 Subject: [PATCH] Note that to_nice_yaml(indent=X) was new in 2.2 (#17085) The ability to pass indent parameter to to_nice_yaml was introduced in 2.2, but this is not noted in the docs. --- docsite/rst/playbooks_filters.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docsite/rst/playbooks_filters.rst b/docsite/rst/playbooks_filters.rst index 028934db9cf..0882c960d99 100644 --- a/docsite/rst/playbooks_filters.rst +++ b/docsite/rst/playbooks_filters.rst @@ -27,7 +27,7 @@ For human readable output, you can use:: {{ some_variable | to_nice_json }} {{ some_variable | to_nice_yaml }} -It's also possible to change the indentation of both:: +It's also possible to change the indentation of both (new in version 2.2):: {{ some_variable | to_nice_json(indent=2) }} {{ some_variable | to_nice_yaml(indent=8) }}