rename TAG_SEPARATORS to TAG_SEPARATOR_PATTERN

This commit is contained in:
hannah98 2022-01-06 14:14:41 +00:00
parent 049f88def9
commit fc3d2bb4dc
3 changed files with 5 additions and 5 deletions

View file

@ -79,7 +79,7 @@ CONFIG_SCHEMA: Dict[str, ConfigDefaultDict] = {
'URL_BLACKLIST': {'type': str, 'default': r'\.(css|js|otf|ttf|woff|woff2|gstatic\.com|googleapis\.com/css)(\?.*)?$'}, # to avoid downloading code assets as their own pages
'URL_WHITELIST': {'type': str, 'default': None},
'ENFORCE_ATOMIC_WRITES': {'type': bool, 'default': True},
'TAG_SEPARATORS': {'type': str, 'default': '[,]'},
'TAG_SEPARATOR_PATTERN': {'type': str, 'default': '[,]'},
},
'SERVER_CONFIG': {