mirror of
https://github.com/evilhero/mylar
synced 2024-12-24 00:32:47 +00:00
FIX:(#382) If publisher is not given, would error out on series add/refresh
This commit is contained in:
parent
b08998ba82
commit
29a8f167aa
2 changed files with 9 additions and 1 deletions
|
@ -164,7 +164,11 @@ def GetComicInfo(comicid,dom):
|
||||||
else:
|
else:
|
||||||
comic['ComicIssues'] = dom.getElementsByTagName('count_of_issues')[0].firstChild.wholeText
|
comic['ComicIssues'] = dom.getElementsByTagName('count_of_issues')[0].firstChild.wholeText
|
||||||
comic['ComicImage'] = dom.getElementsByTagName('super_url')[0].firstChild.wholeText
|
comic['ComicImage'] = dom.getElementsByTagName('super_url')[0].firstChild.wholeText
|
||||||
comic['ComicPublisher'] = dom.getElementsByTagName('name')[trackcnt+2].firstChild.wholeText
|
|
||||||
|
try:
|
||||||
|
comic['ComicPublisher'] = dom.getElementsByTagName('name')[trackcnt+2].firstChild.wholeText
|
||||||
|
except:
|
||||||
|
comic['ComicPublisher'] = "Unknown"
|
||||||
|
|
||||||
comic['FirstIssueID'] = dom.getElementsByTagName('id')[0].firstChild.wholeText
|
comic['FirstIssueID'] = dom.getElementsByTagName('id')[0].firstChild.wholeText
|
||||||
|
|
||||||
|
|
|
@ -106,6 +106,10 @@ def findComic(name, mode, issue, limityear=None):
|
||||||
pubnames = publishers[0].getElementsByTagName('name')
|
pubnames = publishers[0].getElementsByTagName('name')
|
||||||
if len(pubnames) >0:
|
if len(pubnames) >0:
|
||||||
xmlpub = pubnames[0].firstChild.wholeText
|
xmlpub = pubnames[0].firstChild.wholeText
|
||||||
|
else:
|
||||||
|
xmlpub = "Unknown"
|
||||||
|
else:
|
||||||
|
xmlpub = "Unknown"
|
||||||
if (result.getElementsByTagName('name')[0].childNodes[0].nodeValue) is None:
|
if (result.getElementsByTagName('name')[0].childNodes[0].nodeValue) is None:
|
||||||
xmlimage = result.getElementsByTagName('super_url')[0].firstChild.wholeText
|
xmlimage = result.getElementsByTagName('super_url')[0].firstChild.wholeText
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in a new issue