fix: do not add namespace in param
This commit is contained in:
parent
2adef78db3
commit
03d24af05c
1 changed files with 1 additions and 1 deletions
|
|
@ -333,7 +333,7 @@ class RougailOutputFormatter:
|
||||||
del variable["type"]
|
del variable["type"]
|
||||||
return variable
|
return variable
|
||||||
elif isinstance(value, Param):
|
elif isinstance(value, Param):
|
||||||
param_attributes = self.get_object_informations(value, ["type", "key"])
|
param_attributes = self.get_object_informations(value, ["type", "key", "namespace"])
|
||||||
if list(param_attributes) == ['value']:
|
if list(param_attributes) == ['value']:
|
||||||
variable = value.value
|
variable = value.value
|
||||||
else:
|
else:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue