Commit 10644071 authored by Denis Bilenko's avatar Denis Bilenko

minor change of an assert message

parent 7fcd06a7
......@@ -37,7 +37,7 @@ class WSGIHandler(object):
self.data.append(data)
def end(self, env):
assert self.headers is not None, 'Application did not call start_response'
assert self.headers is not None, 'Application did not call start_response()'
has_content_length = False
for header, value in self.headers:
self.request.add_output_header(header, str(value))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment