##// END OF EJS Templates
Backport PR #5769: Don't urlescape the text that goes into a title tag...
Thomas Kluyver -
Show More
@@ -44,7 +44,7 b' class TreeHandler(IPythonHandler):'
44 if len(comps) > 3:
44 if len(comps) > 3:
45 for i in range(len(comps)-2):
45 for i in range(len(comps)-2):
46 comps.pop(0)
46 comps.pop(0)
47 page_title = url_escape(url_path_join(*comps))
47 page_title = url_path_join(*comps)
48 if page_title:
48 if page_title:
49 return page_title+'/'
49 return page_title+'/'
50 else:
50 else:
General Comments 0
You need to be logged in to leave comments. Login now