diff --git a/scrapeit/imdb.py b/scrapeit/imdb.py index f1211b1..84fd762 100644 --- a/scrapeit/imdb.py +++ b/scrapeit/imdb.py @@ -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 = ''