Mirror von
https://github.com/arsenetar/dupeguru.git
synchronisiert 2025-09-11 17:58:17 +00:00
[#106 state:fixed] I couldn't find the root cause of the problem, but I wrapped it anyway...
Dieser Commit ist enthalten in:
Ursprung
361d4698a9
Commit
9bd093a03c
@ -127,7 +127,13 @@ class PyDupeGuruBase(PyRegistrable):
|
||||
|
||||
#---Worker
|
||||
def getJobProgress(self):
|
||||
return self.py.progress.last_progress
|
||||
try:
|
||||
return self.py.progress.last_progress
|
||||
except AttributeError:
|
||||
# I have *no idea* why this can possible happen (last_progress is always set by
|
||||
# create_job() *before* any threaded job notification, which shows the progress panel,
|
||||
# is sent), but it happens anyway, so there we go.
|
||||
return -1
|
||||
|
||||
def getJobDesc(self):
|
||||
return self.py.progress.last_desc
|
||||
|
Laden…
x
In neuem Issue referenzieren
Einen Benutzer sperren