##// END OF EJS Templates
Remove profile_dir from handler class
Thomas Kluyver -
Show More
@@ -120,10 +120,6 b' class IPythonHandler(AuthenticatedHandler):'
120 return Application.instance().log
120 return Application.instance().log
121 else:
121 else:
122 return app_log
122 return app_log
123
124 @property
125 def profile_dir(self):
126 return self.settings.get('profile_dir', '')
127
123
128 #---------------------------------------------------------------
124 #---------------------------------------------------------------
129 # URLs
125 # URLs
@@ -183,7 +183,6 b' class NotebookWebApplication(web.Application):'
183 config=ipython_app.config,
183 config=ipython_app.config,
184 jinja2_env=env,
184 jinja2_env=env,
185 terminals_available=False, # Set later if terminals are available
185 terminals_available=False, # Set later if terminals are available
186 profile_dir = ipython_app.profile_dir.location,
187 )
186 )
188
187
189 # allow custom overrides for the tornado web app.
188 # allow custom overrides for the tornado web app.
General Comments 0
You need to be logged in to leave comments. Login now