any number of (1234/III) I's
This commit is contained in:
parent
547353e484
commit
997076fc24
1 changed files with 1 additions and 1 deletions
|
@ -170,7 +170,7 @@ class IMDb:
|
|||
html_title = str(html_title[0])
|
||||
title = stripTags(html_title)
|
||||
title = re.sub('\(\d\d\d\d\)', '', title)
|
||||
title = re.sub('\(\d\d\d\d/I\)', '', title)
|
||||
title = re.sub('\(\d\d\d\d/I*\)', '', title)
|
||||
for t in ('TV-Series', '(mini)', '(VG)', '(V)', '(TV)'):
|
||||
title = title.replace(t, '')
|
||||
if title.find(u'\xa0') > -1:
|
||||
|
|
Loading…
Reference in a new issue