From 23393edd83c59868f0be6ccd26af0d1986aeb3b4 Mon Sep 17 00:00:00 2001 From: James Vega Date: Sat, 14 Feb 2004 07:17:59 +0000 Subject: [PATCH] Set licensekey registry values to private values. --- plugins/Amazon.py | 3 ++- plugins/Google.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/plugins/Amazon.py b/plugins/Amazon.py index 88de557a3..f4cd1ca42 100644 --- a/plugins/Amazon.py +++ b/plugins/Amazon.py @@ -75,7 +75,8 @@ conf.registerChannelValue(conf.supybot.plugins.Amazon, 'bold', registry.Boolean(True, """Determines whether the results are bolded.""")) conf.registerGlobalValue(conf.supybot.plugins.Amazon, 'licenseKey', LicenseKey('', """Sets the license key for using Amazon Web Services. - Must be set before any other commands in the plugin are used.""")) + Must be set before any other commands in the plugin are used.""", + private=True)) class Amazon(callbacks.Privmsg): threaded = True diff --git a/plugins/Google.py b/plugins/Google.py index c3ac596ca..1525319eb 100644 --- a/plugins/Google.py +++ b/plugins/Google.py @@ -152,7 +152,7 @@ conf.registerChannelValue(conf.supybot.plugins.Google, 'maximumResults', conf.registerGlobalValue(conf.supybot.plugins.Google, 'licenseKey', LicenseKey('', """Sets the Google license key for using Google's Web Services API. This is necessary before you can do any searching with this - module.""")) + module.""", private=True)) class Google(callbacks.PrivmsgCommandAndRegexp): threaded = True