Add wget installation instructions

This commit is contained in:
Philipp Hagemeister
2012-12-16 13:39:45 +01:00
parent c860c18297
commit 6065e27a13
3 changed files with 13 additions and 3 deletions

View File

@@ -10,7 +10,7 @@ import os
import re
year = str(datetime.datetime.now().year)
for fn in glob.glob('*.html'):
for fn in glob.glob('*.html*'):
with io.open(fn, encoding='utf-8') as f:
content = f.read()
newc = re.sub(u'(?P<copyright>Copyright © 2006-)(?P<year>[0-9]{4})', u'Copyright © 2006-' + year, content)