Remove profile_dir from handler class

This commit is contained in:
Thomas Kluyver 2014-11-25 18:10:14 -08:00
parent f1295c6b8d
commit 98cd14c04c
2 changed files with 0 additions and 5 deletions

View File

@ -120,10 +120,6 @@ class IPythonHandler(AuthenticatedHandler):
return Application.instance().log
else:
return app_log
@property
def profile_dir(self):
return self.settings.get('profile_dir', '')
#---------------------------------------------------------------
# URLs

View File

@ -183,7 +183,6 @@ class NotebookWebApplication(web.Application):
config=ipython_app.config,
jinja2_env=env,
terminals_available=False, # Set later if terminals are available
profile_dir = ipython_app.profile_dir.location,
)
# allow custom overrides for the tornado web app.