From 7fd3c7aa61eac5b69588d286ffea51406d99be2e Mon Sep 17 00:00:00 2001 From: Andy Byers Date: Wed, 20 Nov 2024 10:53:28 +0000 Subject: [PATCH] fix: ensure processed_value is used for timestamp suffix (#223) --- logic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/logic.py b/logic.py index be55549..9248dc1 100644 --- a/logic.py +++ b/logic.py @@ -304,7 +304,7 @@ def mint_supp_file_doi(supp_file, doi=None): ).processed_value, 'timestamp_suffix': setting_handler.get_setting( 'crossref', 'crossref_date_suffix', article.journal, - ), + ).processed_value, 'parent_doi': article_doi, 'doi': doi, 'now': datetime.datetime.now(),