Mark endOfLife comics as completed when checking for updates

This commit is contained in:
Techwolf 2019-10-18 00:06:26 -07:00 committed by Tobias Gruetzmacher
parent 121e63c069
commit c44a5a3b43

View file

@ -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)