From: W. Trevor King Date: Mon, 9 Dec 2013 03:41:33 +0000 (-0800) Subject: gallery.py: Fix 'stream' -> 'output' typo in serve_scgi X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=3eb8dd17b509190ac47fd297e46678706f4c4a6e;p=blog.git gallery.py: Fix 'stream' -> 'output' typo in serve_scgi This only gets hit for invalid URLs. --- 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: