Skip to content

Commit

Permalink
fix: filter out comma strings in the anchor names
Browse files Browse the repository at this point in the history
  • Loading branch information
ihmily committed Mar 9, 2024
1 parent 903662d commit 441c19c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
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)
Expand Down

0 comments on commit 441c19c

Please sign in to comment.