mirror of
https://github.com/evilhero/mylar
synced 2024-12-27 01:57:01 +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']
|
sarc = nzbiss['SARC']
|
||||||
tmpiss = myDB.selectone('SELECT * FROM issues WHERE IssueID=?', [issueid]).fetchone()
|
tmpiss = myDB.selectone('SELECT * FROM issues WHERE IssueID=?', [issueid]).fetchone()
|
||||||
if tmpiss is not None:
|
if tmpiss is not None:
|
||||||
comicid = nzbiss['ComicID']
|
comicid = tmpiss['ComicID']
|
||||||
comicname = nzbiss['ComicName']
|
comicname = tmpiss['ComicName']
|
||||||
issuenumber = nzbiss['IssueNumber']
|
issuenumber = tmpiss['Issue_Number']
|
||||||
|
|
||||||
#use issueid to get publisher, series, year, issue number
|
#use issueid to get publisher, series, year, issue number
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue