From 666ab20df576cc841c57b00e0821e219e4b84e37 Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Mon, 10 Jan 2022 20:42:09 -0500 Subject: [PATCH] Update archivebox/config.py --- archivebox/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archivebox/config.py b/archivebox/config.py index 89d009ce..c8882b9e 100644 --- a/archivebox/config.py +++ b/archivebox/config.py @@ -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_SEPARATOR_PATTERN': {'type': str, 'default': '[,]'}, + 'TAG_SEPARATOR_PATTERN': {'type': str, 'default': r'[,]'}, }, 'SERVER_CONFIG': {