mirror of https://github.com/zulip/zulip.git
handlers: Fix type of zulip_finish.
This commit is contained in:
parent
8b25766ff2
commit
315a9ee72e
|
@ -288,7 +288,7 @@ class AsyncDjangoHandler(tornado.web.RequestHandler, base.BaseHandler):
|
||||||
return response
|
return response
|
||||||
|
|
||||||
def zulip_finish(self, response, request, apply_markdown):
|
def zulip_finish(self, response, request, apply_markdown):
|
||||||
# type: (HttpResponse, HttpRequest, bool) -> None
|
# type: (Dict[str, Any], HttpRequest, bool) -> None
|
||||||
# Make sure that Markdown rendering really happened, if requested.
|
# Make sure that Markdown rendering really happened, if requested.
|
||||||
# This is a security issue because it's where we escape HTML.
|
# This is a security issue because it's where we escape HTML.
|
||||||
# c.f. ticket #64
|
# c.f. ticket #64
|
||||||
|
|
Loading…
Reference in New Issue