Fixes for Python 3.x
This commit is contained in:
parent
5af124c277
commit
c4ed89e4f2
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/python
|
#!/usr/bin/python3
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
|
@ -63,7 +63,7 @@ def args_parse():
|
||||||
return args
|
return args
|
||||||
|
|
||||||
def file_hash(pathname):
|
def file_hash(pathname):
|
||||||
f = open(pathname)
|
f = open(pathname, 'rb')
|
||||||
buf = f.read()
|
buf = f.read()
|
||||||
f.close()
|
f.close()
|
||||||
hasher = hashlib.sha1()
|
hasher = hashlib.sha1()
|
||||||
|
|
Loading…
Reference in New Issue