Fix: func getActors return list in pisplay
This commit is contained in:
@@ -72,9 +72,9 @@ class Pissplay(Parser):
|
|||||||
tags = self.getTreeAll(htmltree, self.expr_tags)
|
tags = self.getTreeAll(htmltree, self.expr_tags)
|
||||||
if 'Guests' in tags:
|
if 'Guests' in tags:
|
||||||
if tags[0] == 'Collaboration' or tags[0] == 'Toilet for a Day' or tags[0] == 'Collaboration':
|
if tags[0] == 'Collaboration' or tags[0] == 'Toilet for a Day' or tags[0] == 'Collaboration':
|
||||||
return tags[1]
|
return [tags[1]]
|
||||||
else:
|
else:
|
||||||
return tags[0]
|
return [tags[0]]
|
||||||
else:
|
else:
|
||||||
return 'Bruce and Morgan'
|
return 'Bruce and Morgan'
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user