##// END OF EJS Templates
Merge pull request #8587 from minrk/template-string-types...
Matthias Bussonnier -
r21513:b16c2cae merge
parent child Browse files
Show More
@@ -154,7 +154,7 b' class NotebookWebApplication(web.Application):'
154 "template_path",
154 "template_path",
155 ipython_app.template_file_path,
155 ipython_app.template_file_path,
156 )
156 )
157 if isinstance(_template_path, str):
157 if isinstance(_template_path, py3compat.string_types):
158 _template_path = (_template_path,)
158 _template_path = (_template_path,)
159 template_path = [os.path.expanduser(path) for path in _template_path]
159 template_path = [os.path.expanduser(path) for path in _template_path]
160
160
General Comments 0
You need to be logged in to leave comments. Login now