rzc0d3r/ESET-KeyGen

Doesn't work on Win7

Closed this issue · 4 comments

[ FAILED ] Traceback (most recent call last):
File "C:\Users\RomaGly's Studio\Downloads\ESET-KeyGen-1.4.3.0f1\ESET-KeyGen-1.4.3.0f1\main.py", line 888, in (module)
if platform.release() == '7' and webdriver_installer.get_platform()[0] == 'win': # fix for Windows 7
AttributeError: 'WebDriverInstaller' object has no attribute 'get_platform'

Done even by executables, finishing to unobtainable dll's.
At actual time, 15-16 versions are still maintaned and properly running on older systems.

Funny. After a global code rearrangement, I didn't notice that I was using a non-existent function. Replace line 888 with

if platform.release() == '7' and webdriver_installer.platform[0] == 'win': # fix for Windows 7

Don't change spaces!

Tested on windows 7 and I see that I need to finalize some code sections

Tested on windows 7 and I see that I need to finalize some code sections

That's sounds good!