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 1
1
# Change Log
2
2
All notable changes to this project will be documented in this file.
3
3
4
+ ## [ x.x.x] xxxx-xx-xx
5
+ ### Added
6
+ - PNDA-2233 Jupyter notebook plugin added to deployment manager
7
+
4
8
## [ 0.1.1] 2016-09-13
5
9
### Changes
6
10
- Improvements to documentation
Original file line number Diff line number Diff line change @@ -34,12 +34,13 @@ class JupyterCreator(Creator):
34
34
35
35
def validate_component (self , component ):
36
36
errors = []
37
+ notebook_found = False
37
38
file_list = component ['component_detail' ]
38
39
for file_name in file_list :
39
40
if file_name .endswith (r'.ipynb' ):
40
41
notebook_found = True
41
42
42
- if not notebook_found :
43
+ if notebook_found is False :
43
44
errors .append ('missing ipynb file' )
44
45
45
46
return errors
You can’t perform that action at this time.
0 commit comments