Skip to content

Commit

Permalink
Remove "\n\n\n" due to tests failing
Browse files Browse the repository at this point in the history
  • Loading branch information
humitos committed Jan 26, 2024
1 parent 835d073 commit 9f3ea4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion readthedocs/notifications/messages.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit 9f3ea4c

Please sign in to comment.