HBUpdater icon indicating copy to clipboard operation
HBUpdater copied to clipboard

Error: exception "asyncthreader.py"

Open Bellum1410 opened this issue 4 years ago • 1 comments

Hello. I've downloaded Python 3.9.2 for Windows, installed the required packages (Pillow and pyusb) and when I launch the app, I can see some thumbnails of apps but if I switch category (to, say, "Custom firmware"), the apps disappear, also the search results won't return anything for "atmosphere". The command line tells me there was an exception thrown in threading.py, originating in your asyncthreader.py, in lines 67 and 57. The reason it gives is "Attribute error: 'asyncThread' object has no attribute 'isAlive'. Hopefully you can fix this or point me in the right direction to do so myself. Thanks!

Bellum1410 avatar Feb 21 '21 03:02 Bellum1410

asyncThread inherits from threading.Thread. isAlive was a deprecated alias for is_alive that was removed in Python 3.9. Using is_alive instead of isAlive will fix this issue since is_alive is present in both Python 2 and 3. I have created #2 as a fix.

tirkarthi avatar Mar 01 '21 13:03 tirkarthi