From: Ben Darnell Date: Sun, 3 Mar 2013 17:18:34 +0000 (-0500) Subject: Autoescaping is now the default, so remove the explicit setting in chatdemo. X-Git-Tag: v3.0.0~69 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5c7d6d3edc6befed93ae587dc20bc80a988e8b35;p=thirdparty%2Ftornado.git Autoescaping is now the default, so remove the explicit setting in chatdemo. --- diff --git a/demos/chat/chatdemo.py b/demos/chat/chatdemo.py index 6c3fcac2a..4442fc391 100755 --- a/demos/chat/chatdemo.py +++ b/demos/chat/chatdemo.py @@ -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)