From e5d9d136da3eb8ad1cca88cc082a57f9fd1585d4 Mon Sep 17 00:00:00 2001 From: Tim Shawver Date: Thu, 23 Apr 2015 12:32:59 -0400 Subject: [PATCH] One more place where template_path needed to be changed to template_paths --- jupyterhub/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jupyterhub/app.py b/jupyterhub/app.py index cf2c77e7..ac9ee6b5 100644 --- a/jupyterhub/app.py +++ b/jupyterhub/app.py @@ -835,7 +835,7 @@ class JupyterHub(Application): static_path=os.path.join(self.data_files_path, 'static'), static_url_prefix=url_path_join(self.hub.server.base_url, 'static/'), static_handler_class=CacheControlStaticFilesHandler, - template_path=template_path, + template_path=self.template_paths, jinja2_env=jinja_env, version_hash=version_hash, )