diff --git a/mylar/updater.py b/mylar/updater.py index f90a0457..d5f674f8 100755 --- a/mylar/updater.py +++ b/mylar/updater.py @@ -149,7 +149,7 @@ def upcoming_update(ComicID, ComicName, IssueNumber, IssueDate): else: myDB.upsert("issues", values, control) else: - logger.fdebug("Issues don't match for some reason... db issue: " + str(issuechk['Issue_Number']) + " ...weekly new issue: " + str(IssueNumber)) + logger.fdebug("Issues don't match for some reason...weekly new issue: " + str(IssueNumber)) def weekly_update(ComicName): diff --git a/mylar/weeklypull.py b/mylar/weeklypull.py index b6f35a86..88773329 100755 --- a/mylar/weeklypull.py +++ b/mylar/weeklypull.py @@ -59,7 +59,8 @@ def pullit(): 'BOOKS', 'COLLECTIBLES', 'MCFARLANE TOYS', - 'New Releases'] + 'New Releases', + 'Upcoming Releases'] excludes=['2ND PTG', '3RD PTG', @@ -112,12 +113,14 @@ def pullit(): for nono in not_these: if nono in i: #let's try and grab the date for future pull checks - if i.startswith('Shipping') or i.startswith('New Releases'): + if i.startswith('Shipping') or i.startswith('New Releases') or i.startswith('Upcoming Releases'): shipdatechk = i.split() if i.startswith('Shipping'): shipdate = shipdatechk[1] elif i.startswith('New Releases'): shipdate = shipdatechk[3] + elif i.startswith('Upcoming Releases'): + shipdate = shipdatechk[3] sdsplit = shipdate.split('/') mo = sdsplit[0] dy = sdsplit[1]