From bea8e0200c792311054b021a0f9d217ffc8c91bb Mon Sep 17 00:00:00 2001 From: saichint Date: Wed, 18 Jul 2018 21:03:28 -0700 Subject: [PATCH] warning message improved (#42969) --- lib/ansible/modules/network/nxos/nxos_facts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/network/nxos/nxos_facts.py b/lib/ansible/modules/network/nxos/nxos_facts.py index f53d9e4fd5..1d7bb5836d 100644 --- a/lib/ansible/modules/network/nxos/nxos_facts.py +++ b/lib/ansible/modules/network/nxos/nxos_facts.py @@ -198,7 +198,7 @@ class FactsBase(object): try: return resp[0] except IndexError: - self.warnings.append('command %s failed, facts will not be populated' % command_string) + self.warnings.append('command %s failed, facts for this command will not be populated' % command_string) return None def transform_dict(self, data, keymap):