From 0770b1018c91f5b3c83b3c6125ec4c58c01508a0 Mon Sep 17 00:00:00 2001 From: Abhijeet Kasurde Date: Mon, 12 Jun 2017 23:22:30 +0530 Subject: [PATCH] Correct variable name in vca_nat module Signed-off-by: Abhijeet Kasurde --- lib/ansible/modules/cloud/vmware/vca_nat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/cloud/vmware/vca_nat.py b/lib/ansible/modules/cloud/vmware/vca_nat.py index e2d5bb192d..c0407a846b 100644 --- a/lib/ansible/modules/cloud/vmware/vca_nat.py +++ b/lib/ansible/modules/cloud/vmware/vca_nat.py @@ -126,7 +126,7 @@ def rule_to_string(rule): strings = list() for key, value in rule.items(): strings.append('%s=%s' % (key, value)) - return ', '.join(string) + return ', '.join(strings) def main(): argument_spec = vca_argument_spec()