fixed 5 incorrect sha1 + added debug message in Track when a sha1 is incorrect

This commit is contained in:
raphael60650 2021-11-06 20:01:36 +01:00
parent aa341a9746
commit 94c4a26646
2 changed files with 10 additions and 7 deletions

View file

@ -394,7 +394,7 @@
"new":false,
"score":3,
"since_version":"0.10",
"sha1":"d0eeb368229f942fb08abd5b31f6d949a3043ff2"
"sha1":"ed38125f0a889f0a43e1929d232bc3d1cc80e629"
},
"3":{
"name":"Thwomp Ruins",
@ -405,7 +405,7 @@
"new":false,
"score":2,
"since_version":"0.10",
"sha1":"ec987228866efdbe2ae9e746080597f34022d18c"
"sha1":"e098c2657db2449e3ad6dc0e83ddc6cd02bfac8f"
}
}
},
@ -954,7 +954,7 @@
"score":3,
"author":"Caron",
"since_version":"0.1",
"sha1":"07d69e9af5b115b9f7f687234429bfd4dbe57456"
"sha1":"f6c48cad7dc7a029b55078fae3d084474d83bc18"
}
}
},
@ -3171,7 +3171,7 @@
"new":true,
"score":3,
"since_version":"0.10",
"sha1":"f6dbefdcf16edde5b5367b17ea3d4625a8ffa0b0"
"sha1":"bedb7c81a58bf9b79c5a3b170eafb5d9dd62116b"
},
{
"name":"Canary Bay",
@ -6964,7 +6964,7 @@
"warning":1,
"note":"bad kcl",
"since_version":"0.10",
"sha1":"e135e0e8f5dffb1aa53341fcd9fb321f70f85d3f"
"sha1":"6a6ef7799c4d36a608e8a840fb420624a84ef355"
},
{
"name":"Kamek's Crazy Castle",

View file

@ -15,8 +15,11 @@ def check_file_sha1(file: str, excepted_sha1: str) -> int:
:return: 1 if yes, 0 if no
"""
if not os.path.exists(file): return 0
if szs.sha1(file=file) == excepted_sha1: return 1
else: return 0
calculated_sha1 = szs.sha1(file=file)
if calculated_sha1 == excepted_sha1: return 1
else:
print(f"incorrect sha1 for {file} {calculated_sha1} : (expected {excepted_sha1})")
return 0
class Track: