From b70a42f6930a8bb2aece1014f03fdf4d08dd8770 Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Sat, 10 Apr 2021 19:13:50 +0900 Subject: [PATCH] fix typo in _collection_finder.py (#74218) --- lib/ansible/utils/collection_loader/_collection_finder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/utils/collection_loader/_collection_finder.py b/lib/ansible/utils/collection_loader/_collection_finder.py index 393ddbee7b6..f684da2ef0e 100644 --- a/lib/ansible/utils/collection_loader/_collection_finder.py +++ b/lib/ansible/utils/collection_loader/_collection_finder.py @@ -86,7 +86,7 @@ class _AnsibleCollectionFinder: # expand any placeholders in configured paths for p in paths: - # ensure we alway shave ansible_collections + # ensure we always have ansible_collections if os.path.basename(p) == 'ansible_collections': p = os.path.dirname(p)