Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

isAlive() method for Thread should be is_alive() #16

Open
DaytonaJohn opened this issue Feb 4, 2022 · 0 comments · May be fixed by #17
Open

isAlive() method for Thread should be is_alive() #16

DaytonaJohn opened this issue Feb 4, 2022 · 0 comments · May be fixed by #17

Comments

@DaytonaJohn
Copy link

In the run() method of ThreadedThumbnailGenerator, the line:

if self.thread is None or not self.thread.isAlive():

should be:

if self.thread is None or not self.thread.is_alive():

There is no isAlive() method for Thread.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
1 participant