fix: add namespace parameter for ansible
This commit is contained in:
parent
601f842772
commit
b14f328e7d
1 changed files with 2 additions and 2 deletions
|
|
@ -168,9 +168,9 @@ class RougailOutputJson:
|
||||||
self.parse_family(option, parent, subnamespace)
|
self.parse_family(option, parent, subnamespace)
|
||||||
child[option.name()] = parent
|
child[option.name()] = parent
|
||||||
else:
|
else:
|
||||||
self.parse_variable(option, child)
|
self.parse_variable(option, child, namespace)
|
||||||
|
|
||||||
def parse_variable(self, option, child):
|
def parse_variable(self, option, child, namespace):
|
||||||
child[option.name()] = option.value.get()
|
child[option.name()] = option.value.get()
|
||||||
|
|
||||||
def parse_leadership(
|
def parse_leadership(
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue