Commit 312e179d authored by Hanno Schlichting's avatar Hanno Schlichting

Fixed a SyntaxError in utilities/load_site.py script.

parent 8c94f84e
......@@ -5,6 +5,14 @@ This file contains change information for the current Zope release.
Change information for previous versions of Zope can be found in the
file HISTORY.txt.
Zope 2.12.3 (unreleased)
------------------------
Bugs Fixed
++++++++++
- Fixed a SyntaxError in utilities/load_site.py script.
Zope 2.12.2 (2009-12-22)
------------------------
......
......@@ -245,8 +245,8 @@ def upload_html(object, f):
body = ("<!--#var standard_html_header-->\n\n" +
body + "\n\n<!--#var standard_html_footer-->")
else:
body = ("<html><head><title><dtml-var title_or_id></title>
</head><body bgcolor="#FFFFFF">\n\n" +
body = ("<html><head><title><dtml-var title_or_id></title>"
"</head><body bgcolor=\"#FFFFFF\">\n\n" +
body + "\n\n</body></html>")
else:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment