From ac06e3feb08ea7680002a89317610d35f0762b16 Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Fri, 8 Jan 2010 12:52:39 +0100 Subject: [PATCH] fix, comment --- oxweb/imdb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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))