From 67f524ecaa2727bef4af738176058b70289b7d74 Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Sat, 22 Jan 2022 18:41:48 +0200 Subject: [PATCH] dfsfs --- files/classes/comment.py | 2 +- files/classes/submission.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/files/classes/comment.py b/files/classes/comment.py index d973a87874..b81a3a54c6 100644 --- a/files/classes/comment.py +++ b/files/classes/comment.py @@ -370,7 +370,7 @@ class Comment(Base): if self.author.sig_html and not self.ghost and (self.author_id == MOOSE_ID or not (v and v.sigs_disabled)): - body += "
{self.author.sig_html}" + body += f"
{self.author.sig_html}" return body diff --git a/files/classes/submission.py b/files/classes/submission.py index 9dd94b61b2..2658df688d 100644 --- a/files/classes/submission.py +++ b/files/classes/submission.py @@ -383,7 +383,7 @@ class Submission(Base): g.db.commit() if self.author.sig_html and not self.ghost and (self.author_id == MOOSE_ID or not (v and v.sigs_disabled)): - body += "
{self.author.sig_html}" + body += f"
{self.author.sig_html}" return body