Rebase + fix typos

This commit is contained in:
beeankha
2020-04-02 09:21:33 -04:00
parent 15036ff970
commit 5d68f796aa
3 changed files with 3 additions and 3 deletions

View File

@@ -419,7 +419,7 @@ def main():
final_notification_configuration = {}
for legacy_input in OLD_INPUT_NAMES:
if module.params.get(legacy_input) is not None:
module.deprecate(msg='{0} parameter has been depricated, please use notification_configuration instead.'.format(legacy_input), version="3.6")
module.deprecate(msg='{0} parameter has been deprecated, please use notification_configuration instead.'.format(legacy_input), version="3.6")
final_notification_configuration[legacy_input] = module.params.get(legacy_input)
# Give anything in notification_configuration prescedence over the individual inputs
if notification_configuration is not None: