From 0560ff4657fc8d692609c557730a5268003a36ad Mon Sep 17 00:00:00 2001 From: "J.-S. Caux" <J.S.Caux@uva.nl> Date: Tue, 30 Jan 2018 17:31:54 +0100 Subject: [PATCH] Modify regex to allow submission of old-style arXiv identifiers --- submissions/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/submissions/constants.py b/submissions/constants.py index 5d9c0a2b2..c06c7aa50 100644 --- a/submissions/constants.py +++ b/submissions/constants.py @@ -253,6 +253,6 @@ SUBMISSIONS_COMPLETE_REGEX = '(?P<arxiv_identifier_w_vn_nr>[0-9]{4,}.[0-9]{4,}v[ # # CAUTION: *triple* check whether the `default` regex also meets any other explicit journal regex! EXPLICIT_REGEX_MANUSCRIPT_CONSTRAINTS = { - SCIPOST_JOURNAL_PHYSICS: '(?P<arxiv_identifier_w_vn_nr>[0-9]{4,}.[0-9]{5,}v[0-9]{1,2})', + SCIPOST_JOURNAL_PHYSICS: '(?P<arxiv_identifier_w_vn_nr>[0-9]{4,}.[0-9]{4,}v[0-9]{1,2})', 'default': SUBMISSIONS_COMPLETE_REGEX } -- GitLab