##// END OF EJS Templates
Add coding header when notebook exported to .py file....
Thomas Kluyver -
Show More
@@ -111,7 +111,7 b' class PyWriter(NotebookWriter):'
111
111
112 def writes(self, nb, **kwargs):
112 def writes(self, nb, **kwargs):
113 lines = []
113 lines = []
114 lines.extend([u'# <nbformat>2</nbformat>',''])
114 lines.extend([u'# coding: utf-8', u'# <nbformat>2</nbformat>',''])
115 for ws in nb.worksheets:
115 for ws in nb.worksheets:
116 for cell in ws.cells:
116 for cell in ws.cells:
117 if cell.cell_type == u'code':
117 if cell.cell_type == u'code':
General Comments 0
You need to be logged in to leave comments. Login now