From e4b72bf9c8b3c21b5d16c561738b622ed2ec91a1 Mon Sep 17 00:00:00 2001 From: marco Date: Sat, 29 Aug 2020 17:49:57 +0200 Subject: [PATCH] fix updater -> downloadzip kodi 19 --- platformcode/updater.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platformcode/updater.py b/platformcode/updater.py index e2dc427e..c20d5227 100644 --- a/platformcode/updater.py +++ b/platformcode/updater.py @@ -436,7 +436,7 @@ def fixZipGetHash(zipFile): f.write( b'\x00\x00') # Zip file comment length: 0 byte length; tell zip applications to stop reading. - return str(hash) + return hash.decode('utf-8') def _pbhook(numblocks, blocksize, filesize, url, dp):