Skip to content

Commit

Permalink
fix UT
Browse files Browse the repository at this point in the history
  • Loading branch information
Hans-Chrstian committed Oct 3, 2024
1 parent 48fdf88 commit d045430
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ckanext/dcat/converters.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def dcat_to_ckan(dcat_dict):
elif isinstance(dcat_publisher, dict) and dcat_publisher.get('name'):
package_dict['extras'].append({'key': 'dcat_publisher_name', 'value': dcat_publisher.get('name')})

if dcat_publisher.get('mbox'):
if dcat_publisher.get('email'):
package_dict['extras'].append({'key': 'dcat_publisher_email', 'value': dcat_publisher.get('email')})

if dcat_publisher.get('identifier'):
Expand Down

0 comments on commit d045430

Please sign in to comment.