aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat_tools/harvest/doi_registrars.py
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2018-11-21 11:40:10 -0800
committerBryan Newbold <bnewbold@robocracy.org>2018-11-21 11:40:16 -0800
commit008366697aba8046fd33ae1f3707972d87c9a342 (patch)
treefa0872d53cd8a2c3d75f1a27134b268254c3c65a /python/fatcat_tools/harvest/doi_registrars.py
parent8232478d124d44b3988817a09d256c84157ebc4d (diff)
downloadfatcat-008366697aba8046fd33ae1f3707972d87c9a342.tar.gz
fatcat-008366697aba8046fd33ae1f3707972d87c9a342.zip
use isoformat() to format dates
This shouldn't change behavior; it's just more consistent.
Diffstat (limited to 'python/fatcat_tools/harvest/doi_registrars.py')
-rw-r--r--python/fatcat_tools/harvest/doi_registrars.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/fatcat_tools/harvest/doi_registrars.py b/python/fatcat_tools/harvest/doi_registrars.py
index 9518a96d..0296a9d9 100644
--- a/python/fatcat_tools/harvest/doi_registrars.py
+++ b/python/fatcat_tools/harvest/doi_registrars.py
@@ -10,7 +10,7 @@ import datetime
from pykafka import KafkaClient
from fatcat_tools.workers import most_recent_message
-from .harvest_common import HarvestState, DATE_FMT
+from .harvest_common import HarvestState
# Skip pylint due to:
# AttributeError: 'NoneType' object has no attribute 'scope'
@@ -90,7 +90,7 @@ class HarvestCrossrefWorker:
produce_topic = self.kafka.topics[self.produce_topic]
- date_str = date.strftime(DATE_FMT)
+ date_str = date.isoformat()
params = self.params(date_str)
headers = {
'User-Agent': 'fatcat_tools/0.1.0 (https://fatcat.wiki; mailto:{}) python-requests'.format(self.contact_email),