mirror of
https://github.com/evilhero/mylar
synced 2025-01-04 22:10:39 +00:00
FIX:(#1739) Fix for logging error when dealing with unicode issues and refreshing/adding a story arc
This commit is contained in:
parent
19f34ab79d
commit
afeec67fb8
1 changed files with 3 additions and 3 deletions
|
@ -2987,11 +2987,11 @@ class WebInterface(object):
|
||||||
if int(comic['ComicYear']) != int(arc['SeriesYear']):
|
if int(comic['ComicYear']) != int(arc['SeriesYear']):
|
||||||
logger.fdebug("Series years are different - discarding match. " + str(comic['ComicYear']) + " != " + str(arc['SeriesYear']))
|
logger.fdebug("Series years are different - discarding match. " + str(comic['ComicYear']) + " != " + str(arc['SeriesYear']))
|
||||||
else:
|
else:
|
||||||
logger.fdebug("issue #: " + str(arc['IssueNumber']) + " is present!")
|
logger.fdebug("issue #: %s is present!" % arc['IssueNumber'])
|
||||||
logger.fdebug('isschk: ' + str(isschk))
|
logger.fdebug('isschk: %s' % isschk)
|
||||||
logger.fdebug("Comicname: " + arc['ComicName'])
|
logger.fdebug("Comicname: " + arc['ComicName'])
|
||||||
logger.fdebug("ComicID: " + str(isschk['ComicID']))
|
logger.fdebug("ComicID: " + str(isschk['ComicID']))
|
||||||
logger.fdebug("Issue: " + str(arc['IssueNumber']))
|
logger.fdebug("Issue: %s" % arc['IssueNumber'])
|
||||||
logger.fdebug("IssueArcID: " + str(arc['IssueArcID']))
|
logger.fdebug("IssueArcID: " + str(arc['IssueArcID']))
|
||||||
#gather the matches now.
|
#gather the matches now.
|
||||||
arc_match.append({
|
arc_match.append({
|
||||||
|
|
Loading…
Reference in a new issue