take first title only, fixes #1088
This commit is contained in:
parent
eaa8b9995f
commit
13a55763d3
1 changed files with 1 additions and 2 deletions
|
@ -305,9 +305,8 @@ class Imdb(SiteParser):
|
||||||
if key in type:
|
if key in type:
|
||||||
stop_word = True
|
stop_word = True
|
||||||
break
|
break
|
||||||
if not stop_word:
|
if not stop_word and not type in types:
|
||||||
types[type] = t[0]
|
types[type] = t[0]
|
||||||
|
|
||||||
for regexp in (
|
for regexp in (
|
||||||
"^.+ \(imdb display title\) \(English title\)$",
|
"^.+ \(imdb display title\) \(English title\)$",
|
||||||
"^International \(English title\)$",
|
"^International \(English title\)$",
|
||||||
|
|
Loading…
Reference in a new issue