From f9bd4db61283174c0d6e14217c55db3b5c97f0c8 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Wed, 22 Oct 2003 09:14:49 +0000 Subject: [PATCH] Made the wizard and Relay.configure utils.dqrepr their channel names. --- plugins/Relay.py | 2 +- scripts/supybot-wizard | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/Relay.py b/plugins/Relay.py index 080ffc8ae..e17c131ff 100644 --- a/plugins/Relay.py +++ b/plugins/Relay.py @@ -110,7 +110,7 @@ def configure(onStart, afterConnect, advanced): server = ':'.join((server, port)) onStart.append('relay connect %s %s' % (network, server)) channel = anything('What channel would you like to relay between?') - afterConnect.append('relay join %s' % channel) + afterConnect.append('relay join %s' % utils.dqrepr(channel)) while yn('Would like to relay between any more channels?') == 'y': channel = anything('What channel?') afterConnect.append('relay join %s' % channel) diff --git a/scripts/supybot-wizard b/scripts/supybot-wizard index df57adda6..3aa21d65f 100755 --- a/scripts/supybot-wizard +++ b/scripts/supybot-wizard @@ -334,7 +334,7 @@ def main(): prefix the channel with # (or +, or !, or &, but no one uses those channels, really).""") channels = something('What channels?') - afterConnect.append('admin join %s' % channels) + afterConnect.append('admin join %s' % utils.dqrepr(channels)) ### # Plugins