diff --git a/src/risotto/controller.py b/src/risotto/controller.py index bb4313b..1ffb74e 100644 --- a/src/risotto/controller.py +++ b/src/risotto/controller.py @@ -309,6 +309,7 @@ except: await config_std.property.read_only() # copy informations from 'to deploy' configuration to configuration + await config.information.importation(await config_std.information.exportation()) await config.value.importation(await config_std.value.exportation()) await config.permissive.importation(await config_std.permissive.exportation()) await config.property.importation(await config_std.property.exportation()) diff --git a/src/risotto/utils.py b/src/risotto/utils.py index 4a497ea..3e5761a 100644 --- a/src/risotto/utils.py +++ b/src/risotto/utils.py @@ -23,5 +23,5 @@ def tiramisu_display_name(kls, if suffix: doc += suffix if name != doc: - name += f' ({doc})' + name += f'" "{doc}' return name