ratings can not exist now

This commit is contained in:
j 2009-08-20 21:50:07 +02:00
parent 7df4cc4fa7
commit 9a6b6c8c49
1 changed files with 5 additions and 6 deletions

View File

@ -177,12 +177,11 @@ def getMovieInfo(imdbId):
info['rating'] = -1
#Votes
votes = findRe(info['user rating'], '([\d,]*?) votes')
if votes:
info['votes'] = int(votes.replace(',', ''))
else:
info['votes'] = -1
info['votes'] = -1
if "user rating" in info:
votes = findRe(info['user rating'], '([\d,]*?) votes')
if votes:
info['votes'] = int(votes.replace(',', ''))
return info
def getMovieRuntimeSeconds(imdbId):