From 96c05284b7c7c7c8aebbad6c27f9587c86230fa7 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Thu, 12 Dec 2019 21:41:18 +0000 Subject: [PATCH] Single center --- webinterface.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/webinterface.py b/webinterface.py index 7a92030d..6130a695 100644 --- a/webinterface.py +++ b/webinterface.py @@ -3775,11 +3775,10 @@ def htmlHashTagCloud(baseDir: str,path: str) -> str: if not tagCloud: return '' tagCloud.sort() - tagCloudHtml='
\n' tagCloudStr='' for tagName in tagCloud: tagCloudStr+=''+tagName+' ' - tagCloudHtml+=tagCloudStr.strip()+'\n
\n' + tagCloudHtml=tagCloudStr.strip()+'\n' return tagCloudHtml def htmlSearch(translate: {}, \ @@ -3809,9 +3808,9 @@ def htmlSearch(translate: {}, \ followStr+='
' followStr+=' ' followStr+=' ' + followStr+='

'+htmlHashTagCloud(baseDir,path)+'

' followStr+=' ' followStr+=' ' - followStr+='

'+htmlHashTagCloud(baseDir,path)+'

' followStr+='' followStr+=htmlFooter() return followStr