From 65c31dceda485eb3a879ae15de5d19fc4d983770 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Brunner?= Date: Wed, 7 Aug 2024 08:48:20 +0200 Subject: [PATCH] Fix acceptences tests --- app/shared_config_manager/templates/source.html.mako | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/shared_config_manager/templates/source.html.mako b/app/shared_config_manager/templates/source.html.mako index 2a6f9296..95a3695b 100644 --- a/app/shared_config_manager/templates/source.html.mako +++ b/app/shared_config_manager/templates/source.html.mako @@ -100,7 +100,8 @@ ${key_format(key) | h}: ${', '.join(value) | h}
%elif isinstance(value, dict): ${key_format(key) | h}:
- %for k, v in value.items(): + %for k in sorted(value.keys()): + v = value[k]     ${k | h} = ${v | h}
%endfor %else: