From c16b2f6cb3a25f50ee4174d9d2f808bc9594d1fa Mon Sep 17 00:00:00 2001 From: George Katsikas <giorgakis.katsikas@gmail.com> Date: Wed, 25 Oct 2023 14:45:48 +0200 Subject: [PATCH] use start instead of end date for proc git repos --- scipost_django/production/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scipost_django/production/models.py b/scipost_django/production/models.py index 522519e69..b3fbdb7ce 100644 --- a/scipost_django/production/models.py +++ b/scipost_django/production/models.py @@ -372,7 +372,7 @@ class ProofsRepository(models.Model): if proceedings_issue := self.stream.submission.proceedings: return "{journal}/{year}/{conference}".format( journal=self.journal_abbrev, - year=proceedings_issue.event_end_date.year, + year=proceedings_issue.event_start_date.year, conference=proceedings_issue.event_suffix.replace(" ", ""), ) else: -- GitLab