diff options
author | Martin Czygan <martin@archive.org> | 2020-05-27 23:25:00 +0000 |
---|---|---|
committer | Martin Czygan <martin@archive.org> | 2020-05-27 23:25:00 +0000 |
commit | 174cf39a02b85c69ada9bea609be2fc06c172e68 (patch) | |
tree | 46fdb09a5cfe629b2581eaf195fd93ec87b399a3 /python/fatcat_tools/harvest/pubmed.py | |
parent | d7ebedc840d8fe27fe0b952986ec9d9161964123 (diff) | |
parent | 670aed3800873869550b477846f48cb2b4193005 (diff) | |
download | fatcat-174cf39a02b85c69ada9bea609be2fc06c172e68.tar.gz fatcat-174cf39a02b85c69ada9bea609be2fc06c172e68.zip |
Merge branch 'bnewbold-harvest-state-next-span' into 'master'
rename HarvestState.next() to HarvestState.next_span()
See merge request webgroup/fatcat!53
Diffstat (limited to 'python/fatcat_tools/harvest/pubmed.py')
-rw-r--r-- | python/fatcat_tools/harvest/pubmed.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/fatcat_tools/harvest/pubmed.py b/python/fatcat_tools/harvest/pubmed.py index d78045c6..f6301b8d 100644 --- a/python/fatcat_tools/harvest/pubmed.py +++ b/python/fatcat_tools/harvest/pubmed.py @@ -144,7 +144,7 @@ class PubmedFTPWorker: if len(self.date_file_map) == 0: raise ValueError("map from dates to files should not be empty, maybe the HTML changed?") - current = self.state.next(continuous) # pylint: disable=not-callable + current = self.state.next_span(continuous) if current: print("Fetching citations updated on {} (UTC)".format(current), file=sys.stderr) self.fetch_date(current) |