fix: don't escape some characters

This commit is contained in:
knoflook 2022-03-24 15:13:53 +01:00
parent 2fbc952a72
commit cf8b1ff7e9
Signed by: knoflook
GPG Key ID: D6A1D0E8FC4FEF1C
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ from bs4 import BeautifulSoup
from slugify import slugify
from re import compile as re_compile
from re import sub
yamlre = re_compile('[_\?:\'\[\]\{\}\#\&\*\!\|\>\`\"\%]')
yamlre = re_compile('[_\'\[\]\{\}\#\&\*\!\|\>\`\"\%]')
def write_etag(feed_name, feed_data):