From b569edae18d4742f679924cd880271d578d01c43 Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Sat, 9 Mar 2013 05:34:26 +0000 Subject: [PATCH 1/1] cgi.py: Fix stupid typo so that HTTP status codes are returned properly. --- cgi.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cgi.py b/cgi.py index 0630feb..b06ef85 100644 --- a/cgi.py +++ b/cgi.py @@ -264,7 +264,7 @@ def cgi_errors(hook = None): if hook: hook() if isinstance(e, U.ExpectedError) and not OUT.headerp: page('error.fhtml', - headers = dict(status = e.code), + header = dict(status = e.code), title = 'Chopwood: error', error = e) else: exty, exval, extb = SYS.exc_info() @@ -278,7 +278,7 @@ def cgi_errors(hook = None): format_tmpl(TMPL['exception.fhtml'], toplevel = False) else: page('exception.fhtml', - headers = dict(status = 500), + header = dict(status = 500), title = 'Chopwood: internal error', toplevel = True) -- 2.11.0