File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
examples/client/multi-image Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -208,7 +208,7 @@ def get_child_spec_list(args):
208208 if args .subproject_list :
209209 return args .subproject_list .split (',' )
210210 else :
211- print ( "processing excel" )
211+ logging . info ( f"Processing excel file { args . subproject_spec_file } " )
212212 import openpyxl
213213 wb = openpyxl .load_workbook (args .subproject_spec_file )
214214 ws = wb .active
@@ -221,7 +221,7 @@ def get_child_spec_list(args):
221221 row [1 ] == 'Image ID' and
222222 row [2 ] == 'Version' and
223223 row [3 ] == 'Project Name' ):
224- print ( "File Format checks out (kind of)" )
224+ logging . info ( f "File Format checks out (ind of)" )
225225 continue
226226 elif row_number > 1 :
227227 project_list .append (f"{ row [3 ]} :{ row [0 ]} :{ row [2 ]} " )
You can’t perform that action at this time.
0 commit comments