From e5a6f83aed1cc68d8b00488fb7676ce97b7c52e7 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Tue, 8 Apr 2003 19:19:21 +0000 Subject: [PATCH] Added morehelp to googlelicensekey --- plugins/Google.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/plugins/Google.py b/plugins/Google.py index 93d0e0fc5..a1c7b1629 100644 --- a/plugins/Google.py +++ b/plugins/Google.py @@ -38,6 +38,7 @@ Commands include: googlebsd googlemac googlespell + googlelicensekey """ from baseplugin import * @@ -90,7 +91,11 @@ class Google(callbacks.Privmsg): return '%s %s' % (' ;; '.join(results), time) def googlelicensekey(self, irc, msg, args): - """""" + """ + + Sets the Google license key for using Google's Web Services API. This + is necessary before you can do any searching with this module. + """ key = privmsgs.getArgs(args) google.setLicense(key) irc.reply(msg, conf.replySuccess)