Skip to content

Commit

Permalink
Merge pull request #3304 from Alnusjaponica/fix-typo
Browse files Browse the repository at this point in the history
Fix syntax error in docstring
  • Loading branch information
bdarnell committed Aug 7, 2023
2 parents d8be9f6 + f23d4a6 commit 3afcc45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tornado/web.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)),
])
"""

Expand Down

0 comments on commit 3afcc45

Please sign in to comment.