From 05ec0c9b8d16414e4d767dfd451edd7d90380f2c Mon Sep 17 00:00:00 2001 From: David Mahler Date: Thu, 21 Sep 2017 03:03:23 -0700 Subject: [PATCH] Minor typo on deprecation warning (#30615) --- lib/ansible/module_utils/vyos.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/module_utils/vyos.py b/lib/ansible/module_utils/vyos.py index 2b042a0ef0e..0aa93905387 100644 --- a/lib/ansible/module_utils/vyos.py +++ b/lib/ansible/module_utils/vyos.py @@ -66,7 +66,7 @@ def check_args(module, warnings): for key in vyos_argument_spec: if module._name == 'vyos_user': if key not in ['password', 'provider'] and module.params[key]: - warnings.append('argument %s has been deprecated and will be in a future version' % key) + warnings.append('argument %s has been deprecated and will be removed in a future version' % key) else: if key != 'provider' and module.params[key]: warnings.append('argument %s has been deprecated and will be removed in a future version' % key)