diff --git a/scipost_django/journals/regexes.py b/scipost_django/journals/regexes.py index db6ed340c3f2e62b38c51e1d333601249734662c..271113c2834d0ed432b5080154b7861ae8897fb8 100644 --- a/scipost_django/journals/regexes.py +++ b/scipost_django/journals/regexes.py @@ -4,7 +4,7 @@ __license__ = "AGPL v3" JOURNAL_DOI_LABEL_REGEX = r"(SciPost)[a-zA-Z]+|(MigPol)" -VOLUME_DOI_LABEL_REGEX = r"({})\.\w".format(JOURNAL_DOI_LABEL_REGEX) +VOLUME_DOI_LABEL_REGEX = r"({})\.\w+".format(JOURNAL_DOI_LABEL_REGEX) ISSUE_DOI_LABEL_REGEX = r"({})\.\w+(\.[0-9]+)?".format(JOURNAL_DOI_LABEL_REGEX)