Skip to content

Commit

Permalink
should use python3 unicode in 'blog' demo tornadoweb#2977
Browse files Browse the repository at this point in the history
  • Loading branch information
youguanxinqing authored and jeyrce committed Aug 25, 2021
1 parent 194e648 commit 0fa047d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion demos/blog/blog.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def __init__(self, db):
(r"/auth/logout", AuthLogoutHandler),
]
settings = dict(
blog_title=u"Tornado Blog",
blog_title="Tornado Blog",
template_path=os.path.join(os.path.dirname(__file__), "templates"),
static_path=os.path.join(os.path.dirname(__file__), "static"),
ui_modules={"Entry": EntryModule},
Expand Down

0 comments on commit 0fa047d

Please sign in to comment.