From f2f61fdfad8317ad1e865586627cb6ebebc56e54 Mon Sep 17 00:00:00 2001 From: James Vega Date: Sat, 22 Nov 2003 00:51:27 +0000 Subject: [PATCH] Configure question about snarfer should be for all users --- plugins/Ebay.py | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/plugins/Ebay.py b/plugins/Ebay.py index 1da5c526d..ced83fa93 100644 --- a/plugins/Ebay.py +++ b/plugins/Ebay.py @@ -56,13 +56,12 @@ def configure(onStart, afterConnect, advanced): # commands you would like to be run when the bot has finished connecting. from questions import expect, anything, something, yn onStart.append('load Ebay') - if advanced: - print 'The Ebay plugin has the functionality to watch for URLs' - print 'that match a specific pattern (we call this a snarfer). When' - print 'supybot sees such a URL, he will parse the web page for' - print 'information and reply with the results.\n' - if yn('Do you want the Ebay snarfer enabled by default?') == 'y': - onStart.append('Ebay config auction-snarfer on') + print 'The Ebay plugin has the functionality to watch for URLs' + print 'that match a specific pattern (we call this a snarfer). When' + print 'supybot sees such a URL, he will parse the web page for' + print 'information and reply with the results.\n' + if yn('Do you want the Ebay snarfer enabled by default?') == 'y': + onStart.append('Ebay config auction-snarfer on') class EbayError(callbacks.Error): pass