Skip to content

Commit

Permalink
Merge pull request #4 from ogdch/develop
Browse files Browse the repository at this point in the history
Release 1.0.1
  • Loading branch information
metaodi committed Feb 20, 2014
2 parents 8f43271 + e93985a commit 04c8a2b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ckanext/foph/harvesters/fophharvester.py
Original file line number Diff line number Diff line change
Expand Up @@ -319,8 +319,11 @@ def gather_stage(self, harvest_job):
'license_id': col[u'license_id'].lower(),
'version': col[u'version'],
'translations': [],
'tags': col[u'tags'].split(u', ')
'tags': []
}
tags = col[u'tags'].split(u', ')
tags = [munge_tag(tag) for tag in tags]
metadata['tags'] = tags

metadata['resources'] = self._generate_resources_dict_array(
col[u'id'])
Expand Down

0 comments on commit 04c8a2b

Please sign in to comment.