diff --git a/Lib/xml/dom/minidom.py b/Lib/xml/dom/minidom.py index 3a35781622f..40e39f861db 100644 --- a/Lib/xml/dom/minidom.py +++ b/Lib/xml/dom/minidom.py @@ -956,7 +956,7 @@ class CharacterData(Childless, Node): dotdotdot = "..." else: dotdotdot = "" - return "" % ( + return '' % ( self.__class__.__name__, data[0:10], dotdotdot) def substringData(self, offset, count):