From 8aab9a76dccfb0a04e9ff385de50cae8743abc79 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Fri, 5 Feb 2021 17:25:33 +0000 Subject: [PATCH] Cast to strings --- webapp_utils.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/webapp_utils.py b/webapp_utils.py index 0ae799400..ce6fc0fe2 100644 --- a/webapp_utils.py +++ b/webapp_utils.py @@ -885,9 +885,8 @@ def htmlKeyboardNavigation(links: {}) -> str: """ htmlStr = '
' for title, url in links.items(): - title = str(title) htmlStr += ' | ' + '' + \ + str(title) + ' | ' htmlStr += '
' return htmlStr