TV/V/VG can go

This commit is contained in:
j 2007-06-27 12:27:29 +00:00
parent f386b7daba
commit 3d8fb83063
1 changed files with 3 additions and 0 deletions

View File

@ -159,6 +159,9 @@ class IMDb:
html_title = str(html_title[0])
title = stripTags(html_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()
def parseYear(self):