Made the wizard and Relay.configure utils.dqrepr their channel names.

This commit is contained in:
Jeremy Fincher 2003-10-22 09:14:49 +00:00
parent 689c464012
commit f9bd4db612
2 changed files with 2 additions and 2 deletions

View File

@ -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)

View File

@ -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