mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-04-05 15:27:53 +10:00
enforce utf8 on literally all file operations because windows sucks
This commit is contained in:
@@ -35,7 +35,7 @@ def get_html(link: Link, path: Path) -> str:
|
||||
document = None
|
||||
for source in sources:
|
||||
try:
|
||||
with open(abs_path / source, "r") as f:
|
||||
with open(abs_path / source, "r", encoding="utf-8") as f:
|
||||
document = f.read()
|
||||
break
|
||||
except (FileNotFoundError, TypeError):
|
||||
|
||||
Reference in New Issue
Block a user