mirror of
https://github.com/evilhero/mylar
synced 2025-02-02 04:21:43 +00:00
FIX:(#1246) Incorrect name reference during story-arc post-processing
This commit is contained in:
parent
62fe079e4f
commit
55ad4f08dc
1 changed files with 1 additions and 1 deletions
|
@ -581,7 +581,7 @@ class PostProcessor(object):
|
||||||
clocation = os.path.join(arcmatch['comiclocation'], arcmatch['sub'], arcmatch['comicfilename'].decode('utf-8'))
|
clocation = os.path.join(arcmatch['comiclocation'], arcmatch['sub'], arcmatch['comicfilename'].decode('utf-8'))
|
||||||
else:
|
else:
|
||||||
clocation = os.path.join(arcmatch['comiclocation'], arcmatch['comicfilename'].decode('utf-8'))
|
clocation = os.path.join(arcmatch['comiclocation'], arcmatch['comicfilename'].decode('utf-8'))
|
||||||
logger.info('[' + k + ' #' + str(issuechk['IssueNumber']) + '] MATCH: ' + tmpfc['ComicLocation'] + ' / ' + str(issuechk['IssueID']) + ' / ' + str(v[i]['ArcValues']['IssueID']))
|
logger.info('[' + k + ' #' + issuechk['IssueNumber'] + '] MATCH: ' + clocation + ' / ' + str(issuechk['IssueID']) + ' / ' + str(v[i]['ArcValues']['IssueID']))
|
||||||
manual_arclist.append({"ComicLocation": clocation,
|
manual_arclist.append({"ComicLocation": clocation,
|
||||||
"ComicID": v[i]['WatchValues']['ComicID'],
|
"ComicID": v[i]['WatchValues']['ComicID'],
|
||||||
"IssueID": v[i]['ArcValues']['IssueID'],
|
"IssueID": v[i]['ArcValues']['IssueID'],
|
||||||
|
|
Loading…
Reference in a new issue