This commit is contained in:
j 2007-06-28 12:28:18 +00:00
parent c941b9877d
commit 472c99240b
1 changed files with 1 additions and 1 deletions

View File

@ -179,7 +179,7 @@ class IMDb:
html_title = stripTags(html_title)
year = re.compile('\((\d\d\d\d)\)').findall(html_title)
if not year:
year = re.compile('\((\d\d\d\d/I)\)').findall(html_title)
year = re.compile('\((\d\d\d\d)/').findall(html_title)
if year:
year = year[0]
else: year = ''