Skip to content
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