summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
Diffstat (limited to 'Lib')
-rw-r--r--Lib/xml/dom/minidom.py2
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):