fix imdb module

This commit is contained in:
j 2008-05-08 19:37:46 +02:00
parent 416ceb1ef9
commit d0b9ad867b
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ def getMovieInfo(imdbId):
year = findRe(title, '\((\d{4})\)')
if not year:
year = findRe(title, '\((\d{4})')
_y = findRe(r'\(([0-9\?]{4}(/[IVXLCDM]+)?)\)')
_y = findRe(title, r'\(([0-9\?]{4}(/[IVXLCDM]+)?)\)')
if _y:
title = title.replace(_y, '')
for t in ('TV series', 'TV-Series', 'TV mini-series', '(mini)', '(VG)', '(V)', '(TV)'):