fix: filter out comma strings in the anchor names

This commit is contained in:
ihmily 2024-03-09 17:52:24 +08:00
parent 903662def5
commit 441c19ca30

View File

@ -88,7 +88,7 @@ config_file = './config/config.ini'
url_config_file = './config/URL_config.ini'
backup_dir = './backup_config'
encoding = 'utf-8-sig'
rstr = r"[\/\\\:\*\?\"\<\>\|&.。]"
rstr = r"[\/\\\:\*\?\"\<\>\|&.。,]"
ffmpeg_path = "ffmpeg" # ffmpeg文件路径
default_path = os.getcwd() + '/downloads'
os.makedirs(default_path, exist_ok=True)