Skip to content

Commit

Permalink
Merge pull request #171 from Hosim33/csv_format_bug
Browse files Browse the repository at this point in the history
Fix csv format column name bug
  • Loading branch information
soimkim authored Jul 22, 2024
2 parents 0047332 + f572ca4 commit 925ae0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fosslight_util/output_format.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def write_output_file(output_file_without_ext, file_extension, sheet_list, exten
if file_extension == '.xlsx':
success, msg = write_result_to_excel(result_file, sheet_list, extended_header, hide_header, cover)
elif file_extension == '.csv':
success, msg, result_file = write_result_to_csv(result_file, sheet_list)
success, msg, result_file = write_result_to_csv(result_file, sheet_list, False, extended_header)
elif file_extension == '.json':
success, msg = write_opossum(result_file, sheet_list)
elif file_extension == '.yaml':
Expand Down

0 comments on commit 925ae0c

Please sign in to comment.