Skip to content

Commit

Permalink
Merge pull request #11 from billaue2/master
Browse files Browse the repository at this point in the history
Disable file verification prints
  • Loading branch information
sumoprojects committed Oct 24, 2017
2 parents 5836d0e + 06f5c96 commit a96aee6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def _check_file_integrity(app):
if not os.path.exists(file_path):
return False
data = readFile(file_path)
print( file_path, hashlib.sha256(data).hexdigest() )
#print( file_path, hashlib.sha256(data).hexdigest() )
if hashlib.sha256(data).hexdigest() != file_hash:
return False

Expand Down

0 comments on commit a96aee6

Please sign in to comment.