Autoescaping is now the default, so remove the explicit setting in chatdemo.

This commit is contained in:
Ben Darnell 2013-03-03 12:18:34 -05:00
parent 920f96db6b
commit 5c7d6d3edc
1 changed files with 0 additions and 1 deletions

View File

@ -43,7 +43,6 @@ class Application(tornado.web.Application):
template_path=os.path.join(os.path.dirname(__file__), "templates"),
static_path=os.path.join(os.path.dirname(__file__), "static"),
xsrf_cookies=True,
autoescape="xhtml_escape",
)
tornado.web.Application.__init__(self, handlers, **settings)