diff --git a/files/routes/comments.py b/files/routes/comments.py index 84b8ce777..e03ea8437 100644 --- a/files/routes/comments.py +++ b/files/routes/comments.py @@ -251,7 +251,7 @@ def comment(v): body_for_checking = '\n{[para]}\n' + body + '\n{[para]}\n' if body_for_checking in f.read(): abort(400, "Snappy quote already exists!") - f.write('\n{[para]}\n' + body) + f.write('{[para]}\n' + body) body_for_sanitize = body if v.owoify: body_for_sanitize = owoify(body_for_sanitize)