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"]
|
||||
return variable
|
||||
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']:
|
||||
variable = value.value
|
||||
else:
|
||||
|
|
|
|||
Loading…
Reference in a new issue