aboutsummaryrefslogtreecommitdiff
path: root/source/export.py
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-01-19 11:58:44 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-01-19 11:58:44 +0100
commit7e7c0da1bdba06d6c32519300af9ef635ed90ed1 (patch)
tree95b276eac700ab28dd8b44570bfcf0feb70d0391 /source/export.py
parentMinor improvements of the generation of pages for the webzine. (diff)
downloadnewspipe-7e7c0da1bdba06d6c32519300af9ef635ed90ed1.tar.gz
newspipe-7e7c0da1bdba06d6c32519300af9ef635ed90ed1.tar.bz2
newspipe-7e7c0da1bdba06d6c32519300af9ef635ed90ed1.zip
Minor fix: added missing <body> tag.
Diffstat (limited to 'source/export.py')
-rw-r--r--source/export.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/export.py b/source/export.py
index 95b56b6b..d1d3a794 100644
--- a/source/export.py
+++ b/source/export.py
@@ -61,7 +61,8 @@ htmlheader = """<!DOCTYPE html>
.author{text-decoration:none;display:block;float:right;margin-left:2em;font-size:small}
.content{margin:1.00em 1.00em}
</style>
-</head>"""
+</head>
+<body>"""
htmlfooter = '\n<hr />\n<p>This software is under GPLv3 license. You are welcome to copy, modify or' + \
' redistribute the source code according to the' + \
bgstack15