Skip to content
This repository has been archived by the owner on Jul 17, 2023. It is now read-only.

Commit

Permalink
Correct error message relative to API key (#13)
Browse files Browse the repository at this point in the history
• Correct a typo in the error message thrown when
no key is specified (speicied ---> specified).

• Change the tense used in this message to make it
consistent with the rest of the file (present ---> past).
  • Loading branch information
samy-mahmoudi authored Oct 9, 2020
1 parent f0b5878 commit 17f1d2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/module_utils/vultr.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def __init__(self, module, namespace):
"Error was %s" % (self.module.params.get('api_account'), to_native(e)))

if not self.api_config.get('api_key'):
self.module.fail_json(msg="The API key is not speicied. Please refer to the documentation.")
self.module.fail_json(msg="No API key was specified. Please refer to the documentation.")

# Common vultr returns
self.result['vultr_api'] = {
Expand Down

0 comments on commit 17f1d2c

Please sign in to comment.