Fix typo in WSGI environment variable

This commit is contained in:
Kentaro Tokutomi
2021-09-06 21:52:38 +09:00
parent 87b26c46e5
commit 56397bb14b
+1 -1
View File
@@ -39,7 +39,7 @@ def create_wsgi_env(
"wsgi.version": (1, 0),
"wsgi.errors": io.StringIO(""),
"wsgi.multithread": True,
"wsgi.multitprocess": True,
"wsgi.multiprocess": True,
"wsgi.run_once": False,
}
for k, v in headers.items():