Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/tasks/acceptance_support.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ def _read_file(path: Path) -> str:

def _read_text_strict(path: Path) -> str:
try:
return path.read_text(encoding="utf-8")
return path.read_text(encoding="utf-8-sig")
except UnicodeDecodeError as exc:
raise ArtifactEncodingError(path, exc) from exc

Expand Down