fix filmingLocations
This commit is contained in:
parent
8563ea8239
commit
a93dc6e37b
1 changed files with 4 additions and 1 deletions
|
@ -135,7 +135,10 @@ class Imdb(SiteParser):
|
|||
},
|
||||
'filmingLocations': {
|
||||
'page': 'locations',
|
||||
're': '<a href="/search/title\?locations=.*?">(.*?)</a>',
|
||||
're': [
|
||||
'<a href="/search/title\?locations=.*?".*?>(.*?)</a>',
|
||||
lambda data: data.strip(),
|
||||
],
|
||||
'type': 'list'
|
||||
},
|
||||
'genre': {
|
||||
|
|
Loading…
Reference in a new issue