From be88250a83805599570997d669891afff2709f1b Mon Sep 17 00:00:00 2001 From: Nathan Hyde Date: Tue, 12 Jul 2022 08:42:09 -0700 Subject: [PATCH] Update python_3_support.rst (#78239) Fix invalid characters warning when using example group names. (Replace dashes in example group name with underscores.) --- docs/docsite/rst/reference_appendices/python_3_support.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docsite/rst/reference_appendices/python_3_support.rst b/docs/docsite/rst/reference_appendices/python_3_support.rst index da06023c1a2..4471c647144 100644 --- a/docs/docsite/rst/reference_appendices/python_3_support.rst +++ b/docs/docsite/rst/reference_appendices/python_3_support.rst @@ -52,11 +52,11 @@ Using Python 3 on the managed machines with commands and playbooks localhost-py3 ansible_host=localhost ansible_connection=local ansible_python_interpreter=/usr/bin/python3 # Example of setting a group of hosts to use Python3 - [py3-hosts] + [py3_hosts] ubuntu16 fedora27 - [py3-hosts:vars] + [py3_hosts:vars] ansible_python_interpreter=/usr/bin/python3 .. seealso:: :ref:`intro_inventory` for more information.