summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Tools/idle/OutputWindow.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/idle/OutputWindow.py b/Tools/idle/OutputWindow.py
index 3d97362..f429f2e 100644
--- a/Tools/idle/OutputWindow.py
+++ b/Tools/idle/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()