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 hed/schema/schema_io/schema2xml.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ def _output_sources(self, hed_schema):
source_name.text = row[df_constants.source]
source_link = SubElement(source_node, xml_constants.LINK_ELEMENT)
source_link.text = row[df_constants.link]
description = SubElement(source_node, xml_constants.DESCRIPTION_ELEMENT)
description.text = row[df_constants.description]

def _output_prefixes(self, hed_schema):
prefixes = hed_schema.get_extras(df_constants.PREFIXES_KEY)
Expand Down