1
0
Fork 0
mirror of https://github.com/evilhero/mylar synced 2024-12-23 16:22:45 +00:00

FIX: Incorrectly marking Continuing Series as Ended, which would cause same series to not be marked as Wanted on weekly pull list

This commit is contained in:
evilhero 2013-05-20 11:45:36 -04:00
parent 1d20ad76b0
commit a01d82db6d
2 changed files with 2 additions and 2 deletions

View file

@ -579,7 +579,7 @@ def addComictoDB(comicid,mismatch=None,pullupd=None,imported=None,ogcname=None):
n_date = datetime.date.today()
recentchk = (n_date - c_date).days
#print ("recentchk: " + str(recentchk))
if recentchk <= 45:
if recentchk <= 55:
lastpubdate = 'Present'
else:
lastpubdate = str(ltmonth) + ' ' + str(ltyear)

View file

@ -404,7 +404,7 @@ def pullitcheck(comic1off_name=None,comic1off_id=None,forcecheck=None):
recentchk = (n_date - c_date).days
#logger.fdebug("recentchk: " + str(recentchk) + " days")
#logger.fdebug(" ----- ")
if recentchk < 45:
if recentchk < 55:
# let's not even bother with comics that are in the Present.
a_list.append(watchd[1])
b_list.append(watchd[2])