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
5 changes: 2 additions & 3 deletions pygeometa/schemas/iso19139/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,9 +164,8 @@ def import_(self, metadata: str) -> dict:
mcf['identification']['status'] = identification.status

LOGGER.debug('Setting contacts')
# for contact in m.get_all_contacts():
# mcf['contact'].update(get_contact(contact))
mcf['contact'].update(get_contact(m.contact[0]))
for contact in m.get_all_contacts():
mcf['contact'].update(get_contact(contact))

LOGGER.debug('Setting distribution')
if m.distribution:
Expand Down
Loading