From cfb6cf5ab43c40881fd0c0a8976f8ca991e058df Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Wed, 14 Feb 2018 09:52:19 -0600 Subject: [PATCH] Tweak rendering for python 3 --- tailbone/views/tempmon/clients.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tailbone/views/tempmon/clients.py b/tailbone/views/tempmon/clients.py index ef6d453a..41a0d8be 100644 --- a/tailbone/views/tempmon/clients.py +++ b/tailbone/views/tempmon/clients.py @@ -114,7 +114,7 @@ class TempmonClientView(MasterView): for probe in probes: text = six.text_type(probe) url = self.request.route_url('tempmon.probes.view', uuid=probe.uuid) - items.append(HTML.tag('li', c=tags.link_to(text, url))) + items.append(HTML.tag('li', c=[tags.link_to(text, url)])) return HTML.tag('ul', c=items) def delete_instance(self, client):