Page 1 of 1

Package problem: tis-7zip 21.05

Published: November 26, 2021 - 12:34 PM
by Portista
Hello everyone,

I've noticed a problem with the latest version of 7-Zip on the store; all installations end in error

Upon closer inspection of setup.py, I noticed that it was missing this

Code: Select all

def get_version_from_binary(filename):
    if filename.endswith('.msi'):
        return get_msi_properties(filename)['ProductVersion']
    else:
        return get_file_properties(filename)['ProductVersion']
After modifying the package, everything works perfectly; I'm sharing this information in case it can help others.

Good day