diff --git a/Lib/idlelib/OutputWindow.py b/Lib/idlelib/OutputWindow.py index 212e38267ae..7522720c29e 100644 --- a/Lib/idlelib/OutputWindow.py +++ b/Lib/idlelib/OutputWindow.py @@ -34,7 +34,7 @@ class OutputWindow(EditorWindow): # Act as output file def write(self, s, tags=(), mark="insert"): - self.text.insert(mark, str(s), tags) + self.text.insert(mark, s, tags) self.text.see(mark) self.text.update()