currently the WSGI server iterates on all chars of the output instead of sending the output string all-at-once. ``` diff - return self.output + return [self.output] ``` I noticed this glitch while working on [fiole](https://github.com/florentx/fiole).