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,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:
|
||||||
|
|
Loading…
Reference in a new issue