summaryrefslogtreecommitdiff
path: root/flup/server/fcgi.py
diff options
context:
space:
mode:
authorAllan Saddi <allan@saddi.com>2006-12-05 22:11:04 +0000
committerAllan Saddi <allan@saddi.com>2006-12-05 22:11:04 +0000
commit0e99d0f70ceb2e85af1631fe139791822693f889 (patch)
treed586144f972c572839b5684ad97e10c87b4fb256 /flup/server/fcgi.py
parent713148833816554f41ff722c8d92b0508d1f9f65 (diff)
downloadflup-0e99d0f70ceb2e85af1631fe139791822693f889.tar.gz
Update servers to default to an empty QUERY_STRING if
not present in the environ. Update gzip.py: compresslevel -> compress_level
Diffstat (limited to 'flup/server/fcgi.py')
-rw-r--r--flup/server/fcgi.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/flup/server/fcgi.py b/flup/server/fcgi.py
index 47a7b63..d41b88f 100644
--- a/flup/server/fcgi.py
+++ b/flup/server/fcgi.py
@@ -147,4 +147,6 @@ if __name__ == '__main__':
yield '</table>\n' \
'</body></html>\n'
+ from wsgiref import validate
+ test_app = validate.validator(test_app)
WSGIServer(test_app).run()