case sensitive title type match
This commit is contained in:
parent
da72fbdaed
commit
e6aae3abe5
1 changed files with 1 additions and 1 deletions
|
@ -284,7 +284,7 @@ class Imdb(SiteParser):
|
||||||
super(Imdb, self).__init__(0)
|
super(Imdb, self).__init__(0)
|
||||||
|
|
||||||
for t in self.get('alternativeTitles', []):
|
for t in self.get('alternativeTitles', []):
|
||||||
for type in t[1].lower().split('/'):
|
for type in t[1].split('/'):
|
||||||
type = type.strip()
|
type = type.strip()
|
||||||
for regexp in (
|
for regexp in (
|
||||||
"^.+ \(imdb display title\) \(English title\)$",
|
"^.+ \(imdb display title\) \(English title\)$",
|
||||||
|
|
Loading…
Reference in a new issue