diff --git a/docs/docsite/rst/porting_guides/porting_guide_core_2.13.rst b/docs/docsite/rst/porting_guides/porting_guide_core_2.13.rst index 91ccd01ef0f..a60b3b2cfde 100644 --- a/docs/docsite/rst/porting_guides/porting_guide_core_2.13.rst +++ b/docs/docsite/rst/porting_guides/porting_guide_core_2.13.rst @@ -9,7 +9,7 @@ This section discusses the behavioral changes between ``ansible-core`` 2.12 and It is intended to assist in updating your playbooks, plugins and other parts of your Ansible infrastructure so they will work with this version of Ansible. -We suggest you read this page along with `ansible-core Changelog for 2.13 `_ to understand what updates you may need to make. +We suggest you read this page along with `ansible-core Changelog for 2.13 `_ to understand what updates you may need to make. This document is part of a collection on porting. The complete list of porting guides can be found at :ref:`porting guides `. diff --git a/hacking/build_library/build_ansible/command_plugins/porting_guide.py b/hacking/build_library/build_ansible/command_plugins/porting_guide.py index 40097a3f6c1..7671efeb451 100644 --- a/hacking/build_library/build_ansible/command_plugins/porting_guide.py +++ b/hacking/build_library/build_ansible/command_plugins/porting_guide.py @@ -24,7 +24,7 @@ This section discusses the behavioral changes between Ansible {{ prev_ver }} and It is intended to assist in updating your playbooks, plugins and other parts of your Ansible infrastructure so they will work with this version of Ansible. -We suggest you read this page along with `Ansible Changelog for {{ ver }} `_ to understand what updates you may need to make. +We suggest you read this page along with `Ansible Changelog for {{ ver }} `_ to understand what updates you may need to make. This document is part of a collection on porting. The complete list of porting guides can be found at :ref:`porting guides `. @@ -117,7 +117,7 @@ def generate_porting_guide(version): def write_guide(version, guide_content): - filename = 'porting_guide_{0}.rst'.format(version) + filename = 'docs/docsite/rst/porting_guides/porting_guide_core_{0}.rst'.format(version) with open(filename, 'w') as out_file: out_file.write(guide_content)