From 13715a0ca3a3a1ed98be934b2965d83422d1a3fb Mon Sep 17 00:00:00 2001 From: James Vega Date: Thu, 19 Mar 2009 21:10:46 -0400 Subject: [PATCH] Google: Fix calc by basing the regex off the calc img Signed-off-by: James Vega --- plugins/Google/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Google/plugin.py b/plugins/Google/plugin.py index 7c73e7228..696c0000e 100644 --- a/plugins/Google/plugin.py +++ b/plugins/Google/plugin.py @@ -329,7 +329,7 @@ class Google(callbacks.PluginRegexp): url = r'http://google.com/search?q=' + s return url - _calcRe = re.compile(r'(.*?)', re.I) + _calcRe = re.compile(r'(.*?)', re.I) _calcSupRe = re.compile(r'(.*?)', re.I) _calcFontRe = re.compile(r'(.*?)') _calcTimesRe = re.compile(r'&(?:times|#215);')