We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e86032e commit 1da1c39Copy full SHA for 1da1c39
src/gitingest/query_ingestion.py
@@ -69,7 +69,7 @@ def _get_encoding_list() -> list[str]:
69
List of encoding names to try in priority order, starting with the
70
platform's default encoding followed by common fallback encodings.
71
"""
72
- encodings = ["utf-8", "utf-8-sig"]
+ encodings = ["utf-8", "utf-8-sig", "latin"]
73
if platform.system() == "Windows":
74
encodings.extend(["cp1252", "iso-8859-1"])
75
return encodings + [locale.getpreferredencoding()]
0 commit comments