diff options
| author | bwarsaw | 2000-07-22 03:50:06 +0000 |
|---|---|---|
| committer | bwarsaw | 2000-07-22 03:50:06 +0000 |
| commit | a84e56195f962d076f260bbab64394916751002b (patch) | |
| tree | b0caefcec841d6ffd78402fc7f83f10d2b540747 /Mailman/htmlformat.py | |
| parent | 76a8d2acaf0255ffdf37ae0eccfc6e00f4c23f32 (diff) | |
| download | mailman-a84e56195f962d076f260bbab64394916751002b.tar.gz mailman-a84e56195f962d076f260bbab64394916751002b.tar.zst mailman-a84e56195f962d076f260bbab64394916751002b.zip | |
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): |
