File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
api/src/main/resources/plugins Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 11# Change Log
22All notable changes to this project will be documented in this file.
33
4+ ## [ x.x.x] xxxx-xx-xx
5+ ### Added
6+ - PNDA-2233 Jupyter notebook plugin added to deployment manager
7+
48## [ 0.1.1] 2016-09-13
59### Changes
610- Improvements to documentation
Original file line number Diff line number Diff line change @@ -34,12 +34,13 @@ class JupyterCreator(Creator):
3434
3535 def validate_component (self , component ):
3636 errors = []
37+ notebook_found = False
3738 file_list = component ['component_detail' ]
3839 for file_name in file_list :
3940 if file_name .endswith (r'.ipynb' ):
4041 notebook_found = True
4142
42- if not notebook_found :
43+ if notebook_found is False :
4344 errors .append ('missing ipynb file' )
4445
4546 return errors
You can’t perform that action at this time.
0 commit comments