Skip to content

Commit

Permalink
Merge pull request #264 from vbalbp/fix_APS_parameters
Browse files Browse the repository at this point in the history
APS: fix parameters names
  • Loading branch information
vbalbp authored Feb 19, 2019
2 parents 411e763 + b778422 commit 89c2834
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions hepcrawl/spiders/aps_spider.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,11 @@ def url(self):
params = {}
from_date = self.from_date or self.resume_from(set_=self.set)
if self.set:
params['sets'] = self.set
params['set'] = self.set
if from_date:
params['from_date'] = from_date
params['from'] = from_date
if self.until_date:
params['until_date'] = self.until_date
params['until'] = self.until_date
if self.per_page:
params['per_page'] = self.per_page
if self.date:
Expand Down

0 comments on commit 89c2834

Please sign in to comment.