diff --git a/oxweb/imdb.py b/oxweb/imdb.py index 6ac7b20..62d9120 100644 --- a/oxweb/imdb.py +++ b/oxweb/imdb.py @@ -596,7 +596,7 @@ class IMDb: #Rating #FIXME: in the future this could be just: - #m = findRe('(.*?)', data) + #m = findRe(data, '(.*?)') m = re.compile('(.*?)/10', re.IGNORECASE).search(data) if m: r = stripTags(m.group(1))