Temp revert dot fix because it applies to repo names as well on pull
This commit is contained in:
parent
acf41ca1c8
commit
462500a389
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@ import anunidecode # Don't listen to pylint's lies. This import is required for
|
||||||
|
|
||||||
from uuid import uuid4
|
from uuid import uuid4
|
||||||
|
|
||||||
REPOSITORY_NAME_REGEX = re.compile(r'^[a-zA-Z0-9_-]+$')
|
REPOSITORY_NAME_REGEX = re.compile(r'^[\.a-zA-Z0-9_-]+$')
|
||||||
|
|
||||||
VALID_TAG_PATTERN = r'[\w][\w.-]{0,127}'
|
VALID_TAG_PATTERN = r'[\w][\w.-]{0,127}'
|
||||||
FULL_TAG_PATTERN = r'^[\w][\w.-]{0,127}$'
|
FULL_TAG_PATTERN = r'^[\w][\w.-]{0,127}$'
|
||||||
|
|
Reference in a new issue