Skip to content

Commit

Permalink
Ditch checksumming
Browse files Browse the repository at this point in the history
  • Loading branch information
tzwenn committed Apr 29, 2015
1 parent c82753e commit 3c7848c
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions fply/dylib.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,4 @@ def available(filename=defaultLibName):
else:
return False

try:
with open(filename, "rb") as f:
h = hashlib.sha1(f.read()).hexdigest()
return h == "ec3e7afe320ff37e44fc775072db8f25d78eba2e"
except:
return False

return True

0 comments on commit 3c7848c

Please sign in to comment.