maintenance (replaced dead links, added Git repositories, code dependencies, ...)

This commit is contained in:
Trilarion
2019-07-11 10:24:25 +02:00
parent e23bcb49d6
commit 1672312a0b
89 changed files with 227 additions and 178 deletions

View File

@ -15,7 +15,7 @@ def read_text(file):
"""
Reads a whole text file (UTF-8 encoded).
"""
with open(file, mode='r', encoding='utf-8') as f:
with open(file, mode='r', encoding='utf-8', errors='ignore') as f:
text = f.read()
return text