diff options
author | Christian Heimes <christian@cheimes.de> | 2012-09-20 12:43:24 +0200 |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2012-09-20 12:43:24 +0200 |
commit | 1c47222a256f2977dcbb36c05dce7a5ae8e6ae06 (patch) | |
tree | aadc18979dd5ef6c6aae06f00100105b0d0ed460 /Lib/xml/etree/ElementTree.py | |
parent | 5cb31c9277500745b443dacf183fd16c7704577b (diff) | |
parent | fe6e7e6b30464d7c742bddbe5e96d6ca886ae123 (diff) | |
download | cpython-git-1c47222a256f2977dcbb36c05dce7a5ae8e6ae06.tar.gz |
merge
Diffstat (limited to 'Lib/xml/etree/ElementTree.py')
-rw-r--r-- | Lib/xml/etree/ElementTree.py | 2 |
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) |