TV/V/VG can go
This commit is contained in:
parent
f386b7daba
commit
3d8fb83063
1 changed files with 3 additions and 0 deletions
|
@ -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):
|
||||
|
|
Loading…
Reference in a new issue