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']Good day
