commit | 5b5e0b9bf9951ebcafcf09354d770905293a32d5 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Wed Sep 19 13:28:25 2001 +0000 |
committer | Guido van Rossum <guido@python.org> | Wed Sep 19 13:28:25 2001 +0000 |
tree | ef4a6bacaea1b069cbb37ab3c9e6081da65be090 | |
parent | 816a1b75b76b9b6cb74c3ea43508e3507491638e [diff] |
Keep tabnanny happy.
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 @@ 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):