From 3ee24118c280afe06a34674a5ee0ac3f48c81881 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Tue, 1 Dec 2020 10:03:21 +0000 Subject: [PATCH] Tidying --- webapp_post.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/webapp_post.py b/webapp_post.py index 5172cfac..c3bf9b15 100644 --- a/webapp_post.py +++ b/webapp_post.py @@ -270,12 +270,13 @@ def getReplyIconHtml(nickname: str, isPublicRepeat: bool, replyToLink += pageNumberParam replyStr = '' + replyToThisPostStr = translate['Reply to this post'] if isPublicRepeat: replyStr += \ ' \n' + '" title="' + replyToThisPostStr + '">\n' else: if isDM(postJsonObject): replyStr += \ @@ -283,20 +284,19 @@ def getReplyIconHtml(nickname: str, isPublicRepeat: bool, '\n' + '" title="' + replyToThisPostStr + '">\n' else: replyStr += \ ' ' + \ '\n' + '" title="' + replyToThisPostStr + '">\n' replyStr += \ ' ' + \ '' + \
-        translate['Reply to this post'] + \
+        replyToThisPostStr + '\n' return replyStr