diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-11-21 10:16:45 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-11-21 10:16:45 -0800 |
commit | de49f9c832045abd03a30be34526a64525574818 (patch) | |
tree | 27c4bfe6a5723ba14abf08cd93926fb2529d718b /python/fatcat_tools/harvest/oaipmh.py | |
parent | 4be11adc4ac5370062cfb0e9cddfe7b3c50d70a7 (diff) | |
download | fatcat-de49f9c832045abd03a30be34526a64525574818.tar.gz fatcat-de49f9c832045abd03a30be34526a64525574818.zip |
fix loop_sleep typo
Diffstat (limited to 'python/fatcat_tools/harvest/oaipmh.py')
-rw-r--r-- | python/fatcat_tools/harvest/oaipmh.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/fatcat_tools/harvest/oaipmh.py b/python/fatcat_tools/harvest/oaipmh.py index ffcd5e78..4485a59f 100644 --- a/python/fatcat_tools/harvest/oaipmh.py +++ b/python/fatcat_tools/harvest/oaipmh.py @@ -117,7 +117,7 @@ class HarvestOaiPmhWorker: if continuous: print("Sleeping {} seconds...".format(self.loop_sleep)) - time.sleep(self.loop_sleep()) + time.sleep(self.loop_sleep) else: break print("{} OAI-PMH ingest caught up".format(self.name)) |