From 667526c22ff59bbe7bc790bf505b7f09cae3856f Mon Sep 17 00:00:00 2001 From: Tom Downes Date: Wed, 8 Nov 2023 15:50:08 -0600 Subject: [PATCH] Fix two misspellings of occurred (#82159) --- lib/ansible/cli/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/cli/__init__.py b/lib/ansible/cli/__init__.py index d64b87597f5..64ab78fb0ab 100644 --- a/lib/ansible/cli/__init__.py +++ b/lib/ansible/cli/__init__.py @@ -601,7 +601,7 @@ class CLI(ABC): try: p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) except OSError as e: - raise AnsibleError("Problem occured when trying to run the password script %s (%s)." + raise AnsibleError("Problem occurred when trying to run the password script %s (%s)." " If this is not a script, remove the executable bit from the file." % (pwd_file, e)) stdout, stderr = p.communicate()