From: Guido van Rossum Date: Wed, 19 Sep 2001 13:28:25 +0000 (+0000) Subject: Keep tabnanny happy. X-Git-Tag: v2.2.1c1~1730 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5b5e0b9bf9951ebcafcf09354d770905293a32d5;p=thirdparty%2FPython%2Fcpython.git Keep tabnanny happy. --- diff --git a/Lib/xml/dom/minidom.py b/Lib/xml/dom/minidom.py index 5cd28de78138..9db9ec1f01a7 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("" % self.data) + writer.write("" % self.data) def _nssplit(qualifiedName):