From 3eb8dd17b509190ac47fd297e46678706f4c4a6e Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Sun, 8 Dec 2013 19:41:33 -0800 Subject: [PATCH] gallery.py: Fix 'stream' -> 'output' typo in serve_scgi This only gets hit for invalid URLs. --- posts/gallery/gallery.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posts/gallery/gallery.py b/posts/gallery/gallery.py index 1dece35..9a33baf 100755 --- a/posts/gallery/gallery.py +++ b/posts/gallery/gallery.py @@ -723,7 +723,7 @@ def serve_scgi(server, host='localhost', port=4000): url = server.relative_url(url=url) except HTTPError as e: LOG.error(e.message) - server._error(e.status, content=e.content, stream=stream) + server._error(e.status, content=e.content, stream=output) except ProcessingComplete: pass else: -- 2.26.2