fix: do not add namespace in param

This commit is contained in:
egarette@silique.fr 2025-03-26 19:34:49 +01:00
parent 2adef78db3
commit 03d24af05c

View file

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