]> jfr.im git - yt-dlp.git/blame - devscripts/gh-pages/update-copyright.py
More Atom feed improvements (#2081)
[yt-dlp.git] / devscripts / gh-pages / update-copyright.py
CommitLineData
067f6a35
FV
1#!/usr/bin/env python
2# coding: utf-8
3
4from __future__ import with_statement
5
6import datetime
7import glob
8import io # For Python 2 compatibilty
9import os
10import re
11
12year = str(datetime.datetime.now().year)
13for fn in glob.glob('*.html*'):
14 with io.open(fn, encoding='utf-8') as f:
15 content = f.read()
16 newc = re.sub(u'(?P<copyright>Copyright © 2006-)(?P<year>[0-9]{4})', u'Copyright © 2006-' + year, content)
17 if content != newc:
18 tmpFn = fn + '.part'
19 with io.open(tmpFn, 'wt', encoding='utf-8') as outf:
20 outf.write(newc)
21 os.rename(tmpFn, fn)