Compare commits

...

1 Commits
2.7.2 ... 2.7.3

Author SHA1 Message Date
DominikDoom
39ea33be9f Fix encoding for load too
Fixes #204
2023-07-22 21:15:44 +02:00

View File

@@ -17,7 +17,7 @@ hash_dict = {}
def load_hash_cache():
with open(known_hashes_file, "r") as file:
with open(known_hashes_file, "r", encoding="utf-8") as file:
for line in file:
name, hash, mtime = line.replace("\n", "").split(",")
hash_dict[name] = (hash, mtime)