mirror of
https://github.com/evilhero/mylar
synced 2024-12-26 09:36:53 +00:00
FIX:(#1570) Post-processing would fail when using ComicRN script
This commit is contained in:
parent
f8a88a95d0
commit
c9c99adebd
1 changed files with 3 additions and 3 deletions
|
@ -924,9 +924,9 @@ class PostProcessor(object):
|
|||
sarc = nzbiss['SARC']
|
||||
tmpiss = myDB.selectone('SELECT * FROM issues WHERE IssueID=?', [issueid]).fetchone()
|
||||
if tmpiss is not None:
|
||||
comicid = nzbiss['ComicID']
|
||||
comicname = nzbiss['ComicName']
|
||||
issuenumber = nzbiss['IssueNumber']
|
||||
comicid = tmpiss['ComicID']
|
||||
comicname = tmpiss['ComicName']
|
||||
issuenumber = tmpiss['Issue_Number']
|
||||
|
||||
#use issueid to get publisher, series, year, issue number
|
||||
|
||||
|
|
Loading…
Reference in a new issue