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))