From 21bba4ee42107df7552906a51f29b2a5af5557a7 Mon Sep 17 00:00:00 2001 From: stevazi Date: Fri, 17 Jan 2025 22:55:08 +0100 Subject: [PATCH] updater --- platformcode/updater.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platformcode/updater.py b/platformcode/updater.py index b214f379..685b0383 100755 --- a/platformcode/updater.py +++ b/platformcode/updater.py @@ -262,7 +262,7 @@ def updateFromZip(message=config.get_localized_string(80050)): hash = fixZipGetHash(localfilename) logger.info(hash) - with zipfile.ZipFile(filetools.file_open(localfilename, 'rb', vfs=True)) as zip: + with zipfile.ZipFile(filetools.file_open(localfilename, 'rb', vfs=False)) as zip: size = sum([zinfo.file_size for zinfo in zip.filelist]) cur_size = 0 for member in zip.infolist():