Skip to content

Commit b155d08

Browse files
authored
Add files via upload
1 parent a3faaf6 commit b155d08

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pyarchivefile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3679,7 +3679,7 @@ def GetHeaderChecksum(inlist=None, checksumtype="md5", encodedata=True, formatsp
36793679
hdr_bytes = _to_bytes(hdr_bytes)
36803680
hdr_bytes = bytes(hdr_bytes)
36813681
if CheckSumSupport(algo_key, hashlib_guaranteed):
3682-
if(saltkey is None):
3682+
if(saltkey is None):
36833683
h = hashlib.new(algo_key, hdr_bytes)
36843684
else:
36853685
h = hmac.new(saltkey, hdr_bytes, digestmod=algo_key)

0 commit comments

Comments
 (0)