diff options
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/idlelib/OutputWindow.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/OutputWindow.py b/Lib/idlelib/OutputWindow.py index 212e382..7522720 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() |