From 8495b6323ad239b0dce9665f66d5e7776294f3b3 Mon Sep 17 00:00:00 2001 From: Peter Sprygada Date: Sun, 22 Jan 2017 00:47:41 -0500 Subject: [PATCH] fixes minor issue in get_block_config() (#20544) passed an invalid argument to dumps() to return the config block --- lib/ansible/module_utils/netcfg.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/ansible/module_utils/netcfg.py b/lib/ansible/module_utils/netcfg.py index a895e5620da..ceea081c448 100644 --- a/lib/ansible/module_utils/netcfg.py +++ b/lib/ansible/module_utils/netcfg.py @@ -108,8 +108,6 @@ def _obj_to_block(objects, visited=None): def dumps(objects, output='block', comments=False): if output == 'block': items = _obj_to_block(objects) - #elif output == 'block': - # items = _obj_to_raw(objects) elif output == 'commands': items = _obj_to_text(objects) else: @@ -226,7 +224,7 @@ class NetworkConfig(object): def get_block_config(self, path): block = self.get_block(path) - return dumps(block, 'config') + return dumps(block, 'block') def _expand_block(self, configobj, S=None): if S is None: