diff options
Diffstat (limited to 'Mailman/htmlformat.py')
| -rw-r--r-- | Mailman/htmlformat.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/htmlformat.py b/Mailman/htmlformat.py index 15f8b2a2a..85395d691 100644 --- a/Mailman/htmlformat.py +++ b/Mailman/htmlformat.py @@ -292,7 +292,7 @@ class Document(Container): class HeadlessDocument(Document): """Document without head section, for templates that provide their own.""" def Format(self, indent=0, **kws): - return 'Content-type: text/html\n' + Container.Format(self, indent) + return 'Content-type: text/html\n\n' + Container.Format(self, indent) class StdContainer(Container): def Format(self, indent=0): |
