##// END OF EJS Templates
completer now recognizes session
Zachary Sailer -
Show More
@@ -153,7 +153,7 var IPython = (function (IPython) {
153 153 var callbacks = {
154 154 'complete_reply': $.proxy(this.finish_completing, this)
155 155 };
156 this.cell.kernel.complete(line, cur.ch, callbacks);
156 this.cell.session.kernel.complete(line, cur.ch, callbacks);
157 157 }
158 158 };
159 159
@@ -86,7 +86,7 class NewFolderHandler(IPythonHandler):
86 86 nbm.add_new_folder(path)
87 87 url = self.base_project_url + 'tree/' + notebook_path
88 88 self.redirect(url)
89
89
90 90
91 91 #-----------------------------------------------------------------------------
92 92 # URL to handler mappings
General Comments 0
You need to be logged in to leave comments. Login now