diff --git a/voussoirkit/pipeable.py b/voussoirkit/pipeable.py index 54a4ee1..10915d2 100644 --- a/voussoirkit/pipeable.py +++ b/voussoirkit/pipeable.py @@ -132,6 +132,7 @@ def input( yield line def _output(stream, line, end): + line = str(line) stream.write(line) if not line.endswith(end): stream.write(end)