fix single cast
This commit is contained in:
parent
c5414c6b89
commit
e29d79f232
1 changed files with 1 additions and 1 deletions
|
@ -103,7 +103,7 @@ class Imdb(SiteParser):
|
|||
're': [
|
||||
' <table class="cast_list">(.*?)</table>',
|
||||
'<td.*?itemprop="actor".*?>.*?>(.*?)</a>.*?<td class="character">(.*?)</td>',
|
||||
lambda ll: [strip_tags(l) for l in ll]
|
||||
lambda ll: [strip_tags(l) for l in ll] if isinstance(ll, list) else strip_tags(ll)
|
||||
],
|
||||
'type': 'list'
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue