mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Correct hashlib.md5 usage in tupkg and tupkgs.
Signed-off-by: Loui Chang <louipc.ist@gmail.com>
This commit is contained in:
parent
207b565f1c
commit
6c3e393d4e
2 changed files with 5 additions and 5 deletions
|
@ -35,7 +35,7 @@ class ClientFile:
|
|||
self.makeMd5()
|
||||
|
||||
def makeMd5(self):
|
||||
md5sum = md5.new()
|
||||
md5sum = md5()
|
||||
while self.fd.tell() != self.size:
|
||||
md5sum.update(self.fd.read(1024))
|
||||
self.md5 = md5sum.hexdigest()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue