Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ykhadilkar committed Jul 1, 2014
1 parent b81b9af commit e659704
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ckanext/datajson/build_datajson.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def make_datajson_entry(package):
("description", package["notes"]), #required
("keyword", [t["display_name"] for t in package["tags"]]),#required
#("modified", package["metadata_modified"]), #required
("modified", extras.get("modified"), package["metadata_modified"]), #required
("modified", extras.get("modified", package["metadata_modified"])), #required
("publisher", extras.get('publisher', package['author'])), #required
('contactPoint', extras['contact_name']), #required
('mbox', extras['contact_email']), #required
Expand Down

0 comments on commit e659704

Please sign in to comment.