diff options
author | Aleksander Machniak <machniak@kolabsys.com> | 2021-11-24 13:06:44 +0100 |
---|---|---|
committer | Aleksander Machniak <machniak@kolabsys.com> | 2021-11-24 13:06:44 +0100 |
commit | 80cc0c3bf7366671e36cd866f32a611eb1d36048 (patch) | |
tree | 97be69152b54542fe59218ae1089074177abbc8a | |
parent | 2f9201192934bad08e188001cd6e7622d9a1f453 (diff) | |
download | pykolab-80cc0c3bf7366671e36cd866f32a611eb1d36048.tar.gz |
Fix error in the footer module
-rw-r--r-- | wallace/module_footer.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wallace/module_footer.py b/wallace/module_footer.py index 73916fb..2833a59 100644 --- a/wallace/module_footer.py +++ b/wallace/module_footer.py @@ -165,12 +165,12 @@ def execute(*args, **kw): if content_type == "text/plain": content = part.get_payload(decode=True) - content = append_footer(content, footer['plain'], footer_position, false) + content = append_footer(content, footer['plain'], footer_position, False) footer_added = set_part_content(part, content) elif content_type == "text/html": content = part.get_payload(decode=True) - content = append_footer(content, footer['html'], footer_position, true) + content = append_footer(content, footer['html'], footer_position, True) footer_added = set_part_content(part, content) if footer_added: |