lookup: Fix minor typos (#740)

Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
(cherry picked from commit 0eb4954339)
This commit is contained in:
Abhijeet Kasurde 2020-08-07 11:41:35 +05:30 committed by Felix Fontein
parent 7bd987e2b9
commit 1b599bde37
4 changed files with 7 additions and 7 deletions

View file

@ -143,5 +143,5 @@ class GcpFileLookup():
class LookupModule(LookupBase):
def run(self, terms, variables=None, **kwargs):
if not HAS_GOOGLE_CLOUD_COLLECTION:
raise AnsibleError("community.general.gcp_storage_files needs a supported version of the google.cloud collection installed")
raise AnsibleError("community.general.gcp_storage_file needs a supported version of the google.cloud collection installed")
return GcpFileLookup().run(terms, variables=variables, **kwargs)