[Zope-Checkins] SVN: Zope/branches/2.12/ Fixed a SyntaxError in utilities/load_site.py script.
Hanno Schlichting
hannosch at hannosch.eu
Tue Dec 22 19:21:19 EST 2009
Log message for revision 106985:
Fixed a SyntaxError in utilities/load_site.py script.
Changed:
U Zope/branches/2.12/doc/CHANGES.rst
U Zope/branches/2.12/src/Zope2/utilities/load_site.py
-=-
Modified: Zope/branches/2.12/doc/CHANGES.rst
===================================================================
--- Zope/branches/2.12/doc/CHANGES.rst 2009-12-22 23:57:52 UTC (rev 106984)
+++ Zope/branches/2.12/doc/CHANGES.rst 2009-12-23 00:21:19 UTC (rev 106985)
@@ -5,6 +5,14 @@
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)
------------------------
Modified: Zope/branches/2.12/src/Zope2/utilities/load_site.py
===================================================================
--- Zope/branches/2.12/src/Zope2/utilities/load_site.py 2009-12-22 23:57:52 UTC (rev 106984)
+++ Zope/branches/2.12/src/Zope2/utilities/load_site.py 2009-12-23 00:21:19 UTC (rev 106985)
@@ -245,8 +245,8 @@
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:
More information about the Zope-Checkins
mailing list