]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Autoescaping is now the default, so remove the explicit setting in chatdemo.
authorBen Darnell <ben@bendarnell.com>
Sun, 3 Mar 2013 17:18:34 +0000 (12:18 -0500)
committerBen Darnell <ben@bendarnell.com>
Sun, 3 Mar 2013 17:18:34 +0000 (12:18 -0500)
demos/chat/chatdemo.py

index 6c3fcac2ac4f4a6458548b5b013b287ad724154e..4442fc391c75aaa70255458e77a6fd33e9aa4eb1 100755 (executable)
@@ -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)