Skip to content

Commit 0fa047d

Browse files
youguanxinqingjeyrce
authored andcommitted
should use python3 unicode in 'blog' demo tornadoweb#2977
1 parent 194e648 commit 0fa047d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

demos/blog/blog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def __init__(self, db):
6868
(r"/auth/logout", AuthLogoutHandler),
6969
]
7070
settings = dict(
71-
blog_title=u"Tornado Blog",
71+
blog_title="Tornado Blog",
7272
template_path=os.path.join(os.path.dirname(__file__), "templates"),
7373
static_path=os.path.join(os.path.dirname(__file__), "static"),
7474
ui_modules={"Entry": EntryModule},

0 commit comments

Comments
 (0)