Commit b55486cb by Guba Sándor

remove +

parent bccebcfd
...@@ -55,7 +55,7 @@ class Disk(object): ...@@ -55,7 +55,7 @@ class Disk(object):
@property @property
def checksum(self, blocksize=65536): def checksum(self, blocksize=65536):
hash = md5() hash = md5()
with open(self.get_path(), "r+b") as f: with open(self.get_path(), "rb") as f:
for block in iter(lambda: f.read(blocksize), ""): for block in iter(lambda: f.read(blocksize), ""):
hash.update(block) hash.update(block)
return hash.hexdigest() return hash.hexdigest()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment