supybot-wizard: Fix variable shadowing.

This commit is contained in:
Valentin Lorentz 2021-10-14 23:43:40 +02:00
parent f31e5c4b9a
commit e972894b8a
1 changed files with 3 additions and 3 deletions

View File

@ -538,7 +538,7 @@ def main():
while True: while True:
channels_input = something('What channels?', default=defaultChannels) channels_input = something('What channels?', default=defaultChannels)
channels = [] channels = []
error = False error_ = False
for channel in channels_input.split(): for channel in channels_input.split():
L = channel.split(',') L = channel.split(',')
if len(L) == 0: if len(L) == 0:
@ -552,9 +552,9 @@ def main():
network.channels.key.get(channel).setValue(key) network.channels.key.get(channel).setValue(key)
else: else:
output("""Too many commas in %s.""" % channel) output("""Too many commas in %s.""" % channel)
error = True error_ = True
break break
if error: if error_:
break break
try: try:
network.channels.set(' '.join(channels)) network.channels.set(' '.join(channels))