fix for review

This commit is contained in:
wong2 2015-03-14 23:28:24 +08:00
parent d03891a470
commit 250d98f48a

View File

@ -541,6 +541,6 @@ def make_fail_app(msg):
("Content-Type", "text/plain"),
("Content-Length", str(len(msg)))
])
return iter([msg])
return [msg]
return app