From 47b3e31de805c4c86a59e826a5747b8a5677f0ac Mon Sep 17 00:00:00 2001 From: alexia Date: Sun, 15 Oct 2023 19:48:14 +0200 Subject: [PATCH] Add blank line before "QRT of" line It looks a bit weird starting immediately after the tweet text without any blank lines in between. fxtwitter also adds a blank line before. --- msgs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/msgs.py b/msgs.py index 4d566c3..fa7ac41 100644 --- a/msgs.py +++ b/msgs.py @@ -15,7 +15,7 @@ def genLikesDisplay(vnf): def genQrtDisplay(qrt): verifiedCheck = "☑️" if ('verified' in qrt and qrt['verified']) else "" - return ("\n【QRT of " + qrt['uploader'] + " (@" + qrt['screen_name'] + ")"+ verifiedCheck+":】\n'" + qrt['description'] + "'") + return ("\n\n【QRT of " + qrt['uploader'] + " (@" + qrt['screen_name'] + ")"+ verifiedCheck+":】\n'" + qrt['description'] + "'") def genPollDisplay(poll): pctSplit=10 @@ -55,4 +55,4 @@ def formatEmbedDesc(type,body,qrt,pollDisplay,likesDisplay): body = body[:-(diff+1)]+"…" return formatEmbedDesc(type,body,qrt,pollDisplay,likesDisplay) else: - return output \ No newline at end of file + return output