##// END OF EJS Templates
Make sure that a notebook_name is provided if writing to the filesystem
Jonathan Frederic -
Show More
@@ -61,6 +61,10 b' class FilesWriter(WriterBase):'
61 See base for more...
61 See base for more...
62 """
62 """
63
63
64 # Verify that a notebook name is provided.
65 if notebook_name is None:
66 raise AttributeError('notebook_name')
67
64 # Pull the extension and subdir from the resources dict.
68 # Pull the extension and subdir from the resources dict.
65 output_extension = resources['output_extension']
69 output_extension = resources['output_extension']
66
70
General Comments 0
You need to be logged in to leave comments. Login now