itty icon indicating copy to clipboard operation
itty copied to clipboard

Response.send should return a list instead of a bytestring

Open florentx opened this issue 12 years ago • 0 comments

currently the WSGI server iterates on all chars of the output instead of sending the output string all-at-once.

-    return self.output
+    return [self.output]

I noticed this glitch while working on fiole.

florentx avatar May 20 '13 12:05 florentx