diff --git a/oxweb/imdb.py b/oxweb/imdb.py index 47c50c5..53393d2 100644 --- a/oxweb/imdb.py +++ b/oxweb/imdb.py @@ -565,6 +565,7 @@ class IMDb: def parse(self): data = self.getPage() IMDbDict ={} + info = getMovieInfo(self.imdb) #Poster IMDbDict['poster'] = getMoviePoster(self.imdb) if not IMDbDict['poster']: @@ -580,11 +581,7 @@ class IMDb: else: IMDbDict['rating'] = -1 #Votes - m = re.compile('\((.*?) votes\)', re.IGNORECASE).findall(data) - if m: - IMDbDict['votes'] = int(m[0].replace(',', '')) - else: - IMDbDict['votes'] = -1 + IMDbDict['votes'] = info['votes'] data = data.replace('\n',' ') #some values