Skip to content
Merged
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
2 changes: 2 additions & 0 deletions src/commoncode/resource.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@ class Header(object):
notice = String(default='', help='Notice text for this tool.')
start_timestamp = String(help='Start timestamp for this header.')
end_timestamp = String(help='End timestamp for this header.')
output_format_version = String(help='Version for the scancode output data format, such as v1.1 .')
duration = String(help='Scan duration in seconds.')
message = String(help='Message text.')
errors = List(help='List of error messages.')
Expand All @@ -175,6 +176,7 @@ def from_dict(cls, **kwargs):
'notice',
'start_timestamp',
'end_timestamp',
'output_format_version',
'duration',
'message',
'errors',
Expand Down