Skip to content

Commit

Permalink
Merge pull request ckan#413 from bzar/fix-harvest_object_list-ref
Browse files Browse the repository at this point in the history
Fix harvest_object_list member reference
  • Loading branch information
amercader authored Sep 1, 2020
2 parents b8b0a3b + 5e97bb4 commit f0fb4f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ckanext/harvest/logic/action/get.py
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ def harvest_object_list(context, data_dict):
query = session.query(HarvestObject)

if source_id:
query = query.filter(HarvestObject.source_id == source_id)
query = query.filter(HarvestObject.harvest_source_id == source_id)

if only_current:
query = query.filter(
Expand Down

0 comments on commit f0fb4f7

Please sign in to comment.