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,8 +115,9 @@ class ComicGetter(threading.Thread):
break break
if self.stopped: if self.stopped:
break break
if self.options.all and not (self.errors or self.options.dry_run or if (self.options.all or
self.options.cont or self.options.cont) and not (self.errors or
self.options.dry_run or
scraperobj.indexes): scraperobj.indexes):
scraperobj.setComplete(self.options.basepath) scraperobj.setComplete(self.options.basepath)
except Exception as msg: except Exception as msg: