summaryrefslogtreecommitdiff
path: root/data/rbot/plugins/googlefight.rb
diff options
context:
space:
mode:
Diffstat (limited to 'data/rbot/plugins/googlefight.rb')
-rwxr-xr-xdata/rbot/plugins/googlefight.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/data/rbot/plugins/googlefight.rb b/data/rbot/plugins/googlefight.rb
index 0b9393ef..894d2233 100755
--- a/data/rbot/plugins/googlefight.rb
+++ b/data/rbot/plugins/googlefight.rb
@@ -54,7 +54,7 @@ class GoogleFightPlugin < Plugin
def google_count(query)
url = 'http://www.google.com/search?hl=en&safe=off&btnG=Search&q=' << CGI.escape(query)
html = Net::HTTP.get(URI.parse((url)))
- res = html.scan(%r{Results <b>1</b> - <b>\d+</b> of(?: about)? <b>([\d,]+)</b>})
+ res = html.scan(%r{>About ([\d,]+) results<nobr>})
res.to_s.tr(",", "").to_i
end
end