fix, comment

This commit is contained in:
j 2010-01-08 12:52:39 +01:00
parent 832aeb848d
commit ac06e3feb0
1 changed files with 1 additions and 1 deletions

View File

@ -596,7 +596,7 @@ class IMDb:
#Rating
#FIXME: in the future this could be just:
#m = findRe('<span id="voteuser">(.*?)</span>', data)
#m = findRe(data, '<span id="voteuser">(.*?)</span>')
m = re.compile('<b>(.*?)/10</b>', re.IGNORECASE).search(data)
if m:
r = stripTags(m.group(1))