Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[issue-827] fix mispelling of OPERATING-SYSTEM #828

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/spdx_tools/spdx/jsonschema/package_converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,11 @@ def _get_property_value(
elif package_property == PackageProperty.PACKAGE_VERIFICATION_CODE:
return apply_if_present(self.package_verification_code_converter.convert, package.verification_code)
elif package_property == PackageProperty.PRIMARY_PACKAGE_PURPOSE:
return package.primary_package_purpose.name if package.primary_package_purpose is not None else None
return (
package.primary_package_purpose.name.replace("_", "-")
if package.primary_package_purpose is not None
else None
)
elif package_property == PackageProperty.RELEASE_DATE:
return apply_if_present(datetime_to_iso_string, package.release_date)
elif package_property == PackageProperty.SOURCE_INFO:
Expand Down