Mark endOfLife comics as completed when checking for updates
This commit is contained in:
parent
121e63c069
commit
c44a5a3b43
1 changed files with 4 additions and 3 deletions
|
@ -115,9 +115,10 @@ class ComicGetter(threading.Thread):
|
|||
break
|
||||
if self.stopped:
|
||||
break
|
||||
if self.options.all and not (self.errors or self.options.dry_run or
|
||||
self.options.cont or
|
||||
scraperobj.indexes):
|
||||
if (self.options.all or
|
||||
self.options.cont) and not (self.errors or
|
||||
self.options.dry_run or
|
||||
scraperobj.indexes):
|
||||
scraperobj.setComplete(self.options.basepath)
|
||||
except Exception as msg:
|
||||
out.exception(msg)
|
||||
|
|
Loading…
Reference in a new issue