diff options
author | Guido van Rossum <guido@python.org> | 2001-09-19 13:28:25 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-09-19 13:28:25 (GMT) |
commit | 5b5e0b9bf9951ebcafcf09354d770905293a32d5 (patch) | |
tree | ef4a6bacaea1b069cbb37ab3c9e6081da65be090 /Lib/xml | |
parent | 816a1b75b76b9b6cb74c3ea43508e3507491638e (diff) | |
download | cpython-5b5e0b9bf9951ebcafcf09354d770905293a32d5.zip cpython-5b5e0b9bf9951ebcafcf09354d770905293a32d5.tar.gz cpython-5b5e0b9bf9951ebcafcf09354d770905293a32d5.tar.bz2 |
Keep tabnanny happy.
Diffstat (limited to 'Lib/xml')
-rw-r--r-- | Lib/xml/dom/minidom.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/xml/dom/minidom.py b/Lib/xml/dom/minidom.py index 5cd28de..9db9ec1 100644 --- a/Lib/xml/dom/minidom.py +++ b/Lib/xml/dom/minidom.py @@ -709,7 +709,7 @@ class CDATASection(Text): nodeName = "#cdata-section" def writexml(self, writer, indent="", addindent="", newl=""): - writer.write("<![CDATA[%s]]>" % self.data) + writer.write("<![CDATA[%s]]>" % self.data) def _nssplit(qualifiedName): |