Skip to content

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

@DaytonaJohn

Description

@DaytonaJohn

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions