1
0
Fork 0
mirror of https://github.com/evilhero/mylar synced 2024-12-26 01:26:50 +00:00

FIX:(#1522) Should finally fix the issus with alt_pull 0 method not displaying the pull-list

This commit is contained in:
evilhero 2017-01-19 10:30:07 -05:00
parent 0596c6366b
commit a241571a4b

View file

@ -452,7 +452,7 @@ def pullit(forcecheck=None):
'STATUS': row[5], 'STATUS': row[5],
'COMICID': None, 'COMICID': None,
'DYNAMICNAME': dynamic_name, 'DYNAMICNAME': dynamic_name,
'WEEKNUMBER': weeknumber, 'WEEKNUMBER': int(weeknumber),
'YEAR': mylar.CURRENT_YEAR} 'YEAR': mylar.CURRENT_YEAR}
myDB.upsert("weekly", newValueDict, controlValueDict) myDB.upsert("weekly", newValueDict, controlValueDict)
except Exception, e: except Exception, e: