Closed Bill-XU closed 3 days ago
Hi @tpaviot
Thank you for previous updates for windows users!
I found a small mistake here : init.py@Ln.38
As is
if platform.system() == "windows":
Should be
if platform.system().lower() == "windows":
Reason On Windows, platform.system() returns "Windows" in which there is a capital letter. Should convert it to lower cases before matching.
Best regards, Bill
Fixed by commit 85164196d93bcd8d8471ef4aec56efe501833a6f
Hi @tpaviot
Thank you for previous updates for windows users!
I found a small mistake here : init.py@Ln.38
As is
Should be
Reason On Windows, platform.system() returns "Windows" in which there is a capital letter. Should convert it to lower cases before matching.
Best regards, Bill