TV/V/VG can go

This commit is contained in:
j 2007-06-27 12:27:29 +00:00
parent f386b7daba
commit 3d8fb83063

View file

@ -159,6 +159,9 @@ class IMDb:
html_title = str(html_title[0]) html_title = str(html_title[0])
title = stripTags(html_title) title = stripTags(html_title)
title = re.sub('\(\d\d\d\d\)', '', title) title = re.sub('\(\d\d\d\d\)', '', title)
title = re.sub('\(TV\)', '', title)
title = re.sub('\(V\)', '', title)
title = re.sub('\(VG\)', '', title)
return title.strip() return title.strip()
def parseYear(self): def parseYear(self):