Fix: func getActors return list in pisplay

This commit is contained in:
yoshiko2
2023-02-03 03:40:48 +08:00
parent bfcc3d5b23
commit 979c63ae58

View File

@@ -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'