Don't urlescape the text that goes into a title tag

This commit is contained in:
Spencer Nelson 2014-05-01 15:12:32 -07:00
parent 395c983377
commit e34b7aa9a7

View File

@ -44,7 +44,7 @@ class TreeHandler(IPythonHandler):
if len(comps) > 3:
for i in range(len(comps)-2):
comps.pop(0)
page_title = url_escape(url_path_join(*comps))
page_title = url_path_join(*comps)
if page_title:
return page_title+'/'
else: