From 32c84993b0106307c0d32a39a0994eaafb9e7d0c Mon Sep 17 00:00:00 2001 From: Zhou Guangjun Date: Wed, 26 May 2021 10:30:59 +0800 Subject: [PATCH] [merge-LXCA] fix problem in merge with upstream - htmlify the dict Details: Revision: d9cc888e68abe7794ade82a251c4dffe9108a014 Author: Michael Du Date: 2017/8/2 21:06:22 --- confluent_server/confluent/messages.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/confluent_server/confluent/messages.py b/confluent_server/confluent/messages.py index bd680dde..21f8c1c0 100644 --- a/confluent_server/confluent/messages.py +++ b/confluent_server/confluent/messages.py @@ -199,6 +199,8 @@ class ConfluentMessage(object): notes.append('Broken because of %s' % val['broken']) elif val is not None and 'expression' in val: value = val['expression'] + elif isinstance(val, dict): + value = _htmlify_structure(val) if value is None: value = '' if val is not None and value == '' and 'isset' in val and val[ @@ -298,6 +300,7 @@ class DeletedResource(ConfluentMessage): notnode = True def __init__(self, resource): self.myargs = [resource] + self.desc = 'Delete Resource' self.kvpairs = {'deleted': resource} def strip_node(self, node): @@ -310,6 +313,7 @@ class CreatedResource(ConfluentMessage): def __init__(self, resource): self.myargs = [resource] + self.desc = 'Create Resource' self.kvpairs = {'created': resource} def strip_node(self, node):