From 06c050e9bd7ab467dd6c10ed073928778c4b1b41 Mon Sep 17 00:00:00 2001 From: Rohit Date: Fri, 17 May 2019 11:49:00 +0530 Subject: [PATCH] asa_config fix (#56559) Signed-off-by: Rohit Thakur --- lib/ansible/modules/network/asa/asa_config.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/ansible/modules/network/asa/asa_config.py b/lib/ansible/modules/network/asa/asa_config.py index 4e3ab197410..ad49118e8af 100644 --- a/lib/ansible/modules/network/asa/asa_config.py +++ b/lib/ansible/modules/network/asa/asa_config.py @@ -279,9 +279,9 @@ def run(module, result): contents = module.params['config'] if not contents: contents = get_config(module) - config = NetworkConfig(indent=1, contents=contents) - configobjs = candidate.difference(config, path=path, match=match, - replace=replace) + config = NetworkConfig(indent=1, contents=contents) + configobjs = candidate.difference(config, path=path, match=match, + replace=replace) else: configobjs = candidate.items