remove tvseries ""

This commit is contained in:
j 2007-06-28 11:04:30 +00:00
parent 9f12c3738a
commit 93f21420ba
1 changed files with 4 additions and 1 deletions

View File

@ -162,7 +162,10 @@ class IMDb:
title = re.sub('\(\d\d\d\d/I\)', '', title)
for t in ('TV-Series', '(mini)', '(VG)', '(V)', '(TV)'):
title = title.replace(t, '')
return title.strip()
title = title.strip()
if title.startswith('"') and title.endswith('"'):
title = title[1:-1]
return title
def parseYear(self):
year = ''