From: Fredrik Tolf Date: Tue, 12 Apr 2011 07:23:10 +0000 (+0200) Subject: python: Fixed SCGI handler typo. X-Git-Tag: 0.8~23 X-Git-Url: http://www.dolda2000.com/gitweb/?p=ashd.git;a=commitdiff_plain;h=1b16086880096c31abd31fa2dae40e5b36789162 python: Fixed SCGI handler typo. --- diff --git a/python/ashd/scgi.py b/python/ashd/scgi.py index 0bc7a57..4583fa7 100644 --- a/python/ashd/scgi.py +++ b/python/ashd/scgi.py @@ -117,7 +117,7 @@ def wrapwsgi(handler): for data in respiter: write(data) if resp: - flushresp() + flushreq() finally: if hasattr(respiter, "close"): respiter.close()