Skip to content

Commit c5c7151

Browse files
Fix issue with WSGI container error
1 parent 16b915d commit c5c7151

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

livereload/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ def start_response(status, response_headers, exc_info=None):
125125
return response.append
126126

127127
app_response = self.wsgi_app(
128-
WSGIContainer.environ(request), start_response)
128+
WSGIContainer(self.wsgi_app).environ(request), start_response)
129129
try:
130130
response.extend(app_response)
131131
body = b"".join(response)

0 commit comments

Comments
 (0)