Improved 7-Zip decompressor

Removed --static argument

Small fixes at variable names and f-strings
This commit is contained in:
platomav 2022-06-01 02:22:59 +03:00
parent aea54aeaad
commit 7111757764
7 changed files with 25 additions and 28 deletions

View file

@ -7,7 +7,7 @@ Portwell EFI Update Extractor
Copyright (C) 2021-2022 Plato Mavropoulos
"""
TITLE = 'Portwell EFI Update Extractor v2.0_a7'
TITLE = 'Portwell EFI Update Extractor v2.0_a8'
import os
import sys
@ -16,7 +16,7 @@ import pefile
# Stop __pycache__ generation
sys.dont_write_bytecode = True
from common.efi_comp import efi_decompress, is_efi_compressed
from common.comp_efi import efi_decompress, is_efi_compressed
from common.path_ops import safe_name, make_dirs
from common.patterns import PAT_PORTWELL_EFI, PAT_MICROSOFT_MZ
from common.system import script_init, argparse_init, printer