fixes minor issue in get_block_config() (#20544)

passed an invalid argument to dumps() to return the config block
pull/20047/head
Peter Sprygada 8 years ago committed by GitHub
parent 61e6e7868c
commit 8495b6323a

@ -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:

Loading…
Cancel
Save