summaryrefslogtreecommitdiff
path: root/Lib/xml/etree/ElementTree.py
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2012-09-20 12:43:24 +0200
committerChristian Heimes <christian@cheimes.de>2012-09-20 12:43:24 +0200
commit1c47222a256f2977dcbb36c05dce7a5ae8e6ae06 (patch)
treeaadc18979dd5ef6c6aae06f00100105b0d0ed460 /Lib/xml/etree/ElementTree.py
parent5cb31c9277500745b443dacf183fd16c7704577b (diff)
parentfe6e7e6b30464d7c742bddbe5e96d6ca886ae123 (diff)
downloadcpython-git-1c47222a256f2977dcbb36c05dce7a5ae8e6ae06.tar.gz
merge
Diffstat (limited to 'Lib/xml/etree/ElementTree.py')
-rw-r--r--Lib/xml/etree/ElementTree.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/xml/etree/ElementTree.py b/Lib/xml/etree/ElementTree.py
index ea4fa7a2d1..b9d8df6ab9 100644
--- a/Lib/xml/etree/ElementTree.py
+++ b/Lib/xml/etree/ElementTree.py
@@ -995,7 +995,7 @@ def _serialize_xml(write, elem, qnames, namespaces):
write(_escape_cdata(elem.tail))
HTML_EMPTY = ("area", "base", "basefont", "br", "col", "frame", "hr",
- "img", "input", "isindex", "link", "meta" "param")
+ "img", "input", "isindex", "link", "meta", "param")
try:
HTML_EMPTY = set(HTML_EMPTY)