diff options
author | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-01-19 11:58:44 +0100 |
---|---|---|
committer | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-01-19 11:58:44 +0100 |
commit | 7e7c0da1bdba06d6c32519300af9ef635ed90ed1 (patch) | |
tree | 95b276eac700ab28dd8b44570bfcf0feb70d0391 /source | |
parent | Minor improvements of the generation of pages for the webzine. (diff) | |
download | newspipe-7e7c0da1bdba06d6c32519300af9ef635ed90ed1.tar.gz newspipe-7e7c0da1bdba06d6c32519300af9ef635ed90ed1.tar.bz2 newspipe-7e7c0da1bdba06d6c32519300af9ef635ed90ed1.zip |
Minor fix: added missing <body> tag.
Diffstat (limited to 'source')
-rw-r--r-- | source/export.py | 3 |
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' + \ |