Python Wsgi Error On Output
My python has become quite rusty as I haven't used it for quite a while and am stuck with an issue I am not able to figure out. The python program should accept a form's data sent
Solution 1:
You need to return the response:
return output(environ, start_response, info)
Post a Comment for "Python Wsgi Error On Output"