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

Commit 17f1d2c

Browse files
Correct error message relative to API key (#13)
• 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).
1 parent f0b5878 commit 17f1d2c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/module_utils/vultr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def __init__(self, module, namespace):
7373
"Error was %s" % (self.module.params.get('api_account'), to_native(e)))
7474

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

7878
# Common vultr returns
7979
self.result['vultr_api'] = {

0 commit comments

Comments
 (0)