Skip to content

Commit

Permalink
[fix] use correct value for LicenseListVersion
Browse files Browse the repository at this point in the history
Signed-off-by: Meret Behrens <meret.behrens@tngtech.com>
  • Loading branch information
meretp committed Mar 2, 2023
1 parent 7a6ee59 commit 20cc1d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/spdx/writer/tagvalue/creation_info_writer.py
Expand Up @@ -32,7 +32,7 @@ def write_creation_info(creation_info: CreationInfo, text_output: TextIO):
write_separator(text_output)

text_output.write("## Creation Information\n")
write_value("LicenseListVersion", str(creation_info.spdx_version), text_output)
write_value("LicenseListVersion", str(creation_info.license_list_version), text_output)
for creator in creation_info.creators:
write_value("Creator", creator.to_serialized_string(), text_output)
write_value("Created", datetime_to_iso_string(creation_info.created), text_output)
Expand Down

0 comments on commit 20cc1d8

Please sign in to comment.