From: Shinichi Hemmi <50256998+Alnusjaponica@users.noreply.github.com> Date: Fri, 4 Aug 2023 04:40:02 +0000 (+0900) Subject: Fix syntax error in docstring X-Git-Tag: v6.4.0b1~18^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F3304%2Fhead;p=thirdparty%2Ftornado.git Fix syntax error in docstring --- diff --git a/tornado/web.py b/tornado/web.py index 439e02c47..333f73680 100644 --- a/tornado/web.py +++ b/tornado/web.py @@ -3135,7 +3135,7 @@ class FallbackHandler(RequestHandler): django.core.handlers.wsgi.WSGIHandler()) application = tornado.web.Application([ (r"/foo", FooHandler), - (r".*", FallbackHandler, dict(fallback=wsgi_app), + (r".*", FallbackHandler, dict(fallback=wsgi_app)), ]) """