From a7937ba3947b109f40bd7c45ad431f9cbf083d7f Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sat, 2 May 2020 19:42:26 +0000 Subject: [PATCH] Replace tabs with spaces --- webinterface.py | 1 + 1 file changed, 1 insertion(+) diff --git a/webinterface.py b/webinterface.py index 0e18e350..a66c37c8 100644 --- a/webinterface.py +++ b/webinterface.py @@ -3979,6 +3979,7 @@ def individualPostAsHtml(recentPostsCache: {}, maxRecentPosts: int, contentStr = '
' + contentStr + '
' else: patchStr = gitFormatContent(postJsonObject['object']['content']) + patchStr = patchStr.replace('\n','
').replace('\t',' ') contentStr = \ '
' + \ patchStr.replace('\n','
') + \