Fix variable shadowing

master
Mark Veidemanis 2 years ago
parent 559e1f4afd
commit 281eb75b26

@ -291,8 +291,8 @@ class API(object):
else:
chanlimit = int(chanlimit)
online_relays = helpers.get_active_relays(net)
for inst in online_relays:
inst.chanlimit = chanlimit
for r in online_relays:
r.chanlimit = chanlimit
elif item == "security":
security = data[item][0]
if security not in ["ssl", "plain"]:

Loading…
Cancel
Save