This commit is contained in:
Rolux 2008-04-14 22:24:56 +02:00
parent aef0aef3b5
commit d0d18b30e2
1 changed files with 1 additions and 1 deletions

View File

@ -156,7 +156,7 @@ class IMDb:
title = stripTags(html_title)
title = re.sub('\(\d\d\d\d\)', '', title)
title = re.sub('\(\d\d\d\d/I*\)', '', title)
for t in ('TV series', 'TV-Series', '(mini)', '(VG)', '(V)', '(TV)'):
for t in ('TV series', 'TV-Series', 'TV mini-series', '(mini)', '(VG)', '(V)', '(TV)'):
title = title.replace(t, '')
if title.find(u'\xa0') > -1:
title = title[:title.find(u'\xa0')]