From 5e58cfa8e0c2e2a525741a78ca3857b22a4f30d1 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Thu, 12 Dec 2019 20:55:30 +0000 Subject: [PATCH] Sort tags --- webinterface.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webinterface.py b/webinterface.py index 70df1a201..8fc6c8f32 100644 --- a/webinterface.py +++ b/webinterface.py @@ -3774,7 +3774,7 @@ def htmlHashTagCloud(baseDir: str,path: str) -> str: break if not tagCloud: return '' - tagCloud=tagCloud.sort() + tagCloud.sort() tagCloudHtml='
\n' tagCloudStr='' for tagName in tagCloud: