From b405958f7998efc2e1d03ecf2d22bcd9276b2533 Mon Sep 17 00:00:00 2001 From: Yigithan Kadir BALCI Date: Thu, 30 Nov 2023 22:13:39 +0300 Subject: [PATCH] fixes typo in cli/ansible-pull arguments (#82316) --- lib/ansible/cli/pull.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/ansible/cli/pull.py b/lib/ansible/cli/pull.py index b20820becf6..fb3321efa9a 100755 --- a/lib/ansible/cli/pull.py +++ b/lib/ansible/cli/pull.py @@ -56,9 +56,9 @@ class PullCLI(CLI): 1: 'File does not exist', 2: 'File is not readable', } - ARGUMENTS = {'playbook.yml': 'The name of one the YAML format files to run as an Ansible playbook.' - 'This can be a relative path within the checkout. By default, Ansible will' - "look for a playbook based on the host's fully-qualified domain name," + ARGUMENTS = {'playbook.yml': 'The name of one the YAML format files to run as an Ansible playbook. ' + 'This can be a relative path within the checkout. By default, Ansible will ' + "look for a playbook based on the host's fully-qualified domain name, " 'on the host hostname and finally a playbook named *local.yml*.', } SKIP_INVENTORY_DEFAULTS = True