This commit is contained in:
Giacomo Leidi 2023-10-10 19:47:15 +02:00
parent 2ee3e6238a
commit 79946741e9
No known key found for this signature in database
GPG Key ID: D075F59A480549C3
1 changed files with 2 additions and 2 deletions

View File

@ -180,14 +180,14 @@ class AbstractEventFormatter(LoggerMixin, ConfLoaderMixin):
def get_recap_header(self) -> Template:
return self._get_template(
self.conf.msg_template_path,
self.conf.recap_header_template_path,
self.get_default_recap_header_template_path
)
def get_recap_fragment_template(self) -> Template:
return self._get_template(
self.conf.msg_template_path,
self.conf.recap_template_path,
self.get_default_recap_template_path
)