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
1 changed files with 1 additions and 1 deletions

View File

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