One more place where template_path needed to be changed to template_paths

This commit is contained in:
Tim Shawver
2015-04-23 12:32:59 -04:00
parent 1d6b16060b
commit e5d9d136da

View File

@@ -835,7 +835,7 @@ class JupyterHub(Application):
static_path=os.path.join(self.data_files_path, 'static'), static_path=os.path.join(self.data_files_path, 'static'),
static_url_prefix=url_path_join(self.hub.server.base_url, 'static/'), static_url_prefix=url_path_join(self.hub.server.base_url, 'static/'),
static_handler_class=CacheControlStaticFilesHandler, static_handler_class=CacheControlStaticFilesHandler,
template_path=template_path, template_path=self.template_paths,
jinja2_env=jinja_env, jinja2_env=jinja_env,
version_hash=version_hash, version_hash=version_hash,
) )