1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-19 11:39:28 +00:00

change regular expression

This commit is contained in:
eukub 2023-12-13 21:01:17 +03:00
parent be008e657d
commit 3462456666

View file

@ -19,7 +19,7 @@ from youtube_dl import compat_str
year = compat_str(datetime.datetime.now().year) year = compat_str(datetime.datetime.now().year)
for fn in glob.glob('*.html*'): for fn in glob.glob('*.html*'):
content = read_file(fn) content = read_file(fn)
newc = re.sub(r'(?P<copyright>Copyright © 2011-)(?P<year>[0-9]{4})', 'Copyright © 2011-' + year, content) newc = re.sub(r'(?P<copyright>Copyright © 2011-)(?P<year>\d{4})', 'Copyright © 2011-' + year, content)
if content != newc: if content != newc:
tmpFn = fn + '.part' tmpFn = fn + '.part'
write_file(tmpFn, newc) write_file(tmpFn, newc)