Skip to content

Commit 1b4c2af

Browse files
committed
Bug fix to create .xlsx file
1 parent b9af79b commit 1b4c2af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fosslight_oss_pkg/_parsing_yaml.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def convert_yml_to_excel(oss_pkg_files, output_file, file_option_on, base_path,
3333

3434
if file_option_on:
3535
base_path = os.path.dirname(oss_pkg_file)
36-
items_to_print.extend(parsing_yml(oss_pkg_file, base_path))
36+
items_to_print.extend(parsing_yml(oss_pkg_file, base_path)[0])
3737
except Exception as ex:
3838
_logger.error('Read yaml file:' + str(ex))
3939

0 commit comments

Comments
 (0)