Skip to content

Commit 107d1df

Browse files
committed
Sub-project specification with excel file
1 parent f4c6200 commit 107d1df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/client/multi-image/manage_project_structure.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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]}")

0 commit comments

Comments
 (0)