From ed51c888895583a856f40ce951c0c131a26f9ca3 Mon Sep 17 00:00:00 2001 From: ianb Date: Tue, 17 May 2005 03:06:22 +0000 Subject: A bunch of pylint-inspired changes; all minor code cleanup --- paste/httpexceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'paste/httpexceptions.py') diff --git a/paste/httpexceptions.py b/paste/httpexceptions.py index 7540a17..01d68f5 100644 --- a/paste/httpexceptions.py +++ b/paste/httpexceptions.py @@ -218,7 +218,7 @@ def middleware(application): return start_response(status, headers, exc_info) try: - return application(environ, start_response) + return application(environ, checked_start_response) except HTTPException, e: if app_started: # They've already started the response, so we can't -- cgit v1.2.1