Skip to content
Snippets Groups Projects
Commit a069c8c7 authored by Thorge Petersen's avatar Thorge Petersen
Browse files

Allow § in tag names

parent 6d1e12c1
No related branches found
No related tags found
2 merge requests!17Stage System soll in Zukunft Master Branch erhalten,!9Allow § in tag names
......@@ -265,7 +265,7 @@ def next_extra_index(data):
def tag_name_validator(value, context):
tagname_match = re.compile('[\w \-.\:\(\)\´\`]*$', re.UNICODE)
tagname_match = re.compile(r'[\w \-.\:\(\)\´\`]*$', re.UNICODE)
if not tagname_match.match(value):
raise toolkit.Invalid(_('Tag "%s" must be alphanumeric '
'characters or symbols: -_.:()') % (value))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment