Skip to content

Commit cb2942b

Browse files
committed
Fix -Tu
This was broken in 4a6cb44 when output buffering was added: printing an int requires stringification.
1 parent 28db3f4 commit cb2942b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ioztat

+1-1
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ class ColumnFormatter:
372372
373373
Must eventually be followed by a call to flush()
374374
"""
375-
self.buffer.append(string + end)
375+
self.buffer.append(str(string) + end)
376376

377377
def flush(self, lines=None):
378378
"""Print the internal buffer, up to the optional lines limit."""

0 commit comments

Comments
 (0)