##// END OF EJS Templates
fix names of notebooks for download/save...
MinRK -
Show More
@@ -117,7 +117,7 b' class NotebookManager(LoggingConfigurable):'
117 # should match the Python in-memory format.
117 # should match the Python in-memory format.
118 kwargs['split_lines'] = False
118 kwargs['split_lines'] = False
119 data = current.writes(nb, format, **kwargs)
119 data = current.writes(nb, format, **kwargs)
120 name = nb.get('name','notebook')
120 name = nb.metadata.get('name','notebook')
121 return last_modified, name, data
121 return last_modified, name, data
122
122
123 def read_notebook_object(self, notebook_id):
123 def read_notebook_object(self, notebook_id):
General Comments 0
You need to be logged in to leave comments. Login now