Skip to content

Commit

Permalink
fix issue: auth was not passed in Search.search().
Browse files Browse the repository at this point in the history
  • Loading branch information
skasberger committed Mar 25, 2020
1 parent ebdba4d commit 90404dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pyDataverse/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -2059,9 +2059,9 @@ def __str__(self):
"""
return 'pyDataverse Search-API class'

def get(self, q, type=None, subtree=None, sort=None, order=None,
def search(self, q, type=None, subtree=None, sort=None, order=None,
per_page=None, start=None, show_relevance=None, show_facets=None,
fq=None, show_entity_ids=None, query_entities=None):
fq=None, show_entity_ids=None, query_entities=None, auth=False):
"""
http://guides.dataverse.org/en/4.18.1/api/search.html
Expand Down

0 comments on commit 90404dc

Please sign in to comment.