From 9f3ea4c52e93bd36d103004e193424858712c05f Mon Sep 17 00:00:00 2001 From: Manuel Kaufmann Date: Fri, 26 Jan 2024 11:46:28 +0100 Subject: [PATCH] Remove "\n\n\n" due to tests failing --- readthedocs/notifications/messages.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readthedocs/notifications/messages.py b/readthedocs/notifications/messages.py index af2313c727a..28c43b453ff 100644 --- a/readthedocs/notifications/messages.py +++ b/readthedocs/notifications/messages.py @@ -65,7 +65,7 @@ def _prepend_template_prefix(self, template): This is required to render the notifications with custom filters/tags. """ prefix = "{% load notifications_filters %}" - return prefix + "\n\n\n" + template + return prefix + template def get_rendered_header(self): template = Template(self._prepend_template_prefix(self.header))