Skip to content

Commit

Permalink
Merge pull request #200 from fosslight/bug
Browse files Browse the repository at this point in the history
Fix the bug
  • Loading branch information
dd-jy authored Dec 9, 2024
2 parents 6267371 + c81d6e3 commit 43d96bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fosslight_source/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ def create_report_file(
logger.warning(f'{formats[i]} is not supported on Windows.Please remove {formats[i]} from format.')
to_remove.append(i)
else:
if formats[i].stasrtswith('spdx'):
if formats[i].startswith('spdx'):
output_files[i] = f"fosslight_spdx_src_{_start_time}"
elif formats[i].startswith('cyclonedx'):
output_files[i] = f'fosslight_cyclonedx_src_{_start_time}'
Expand Down

0 comments on commit 43d96bd

Please sign in to comment.