Fix variable shadowing
This commit is contained in:
parent
2022ab985b
commit
8c809ad444
|
@ -291,8 +291,8 @@ class API(object):
|
||||||
else:
|
else:
|
||||||
chanlimit = int(chanlimit)
|
chanlimit = int(chanlimit)
|
||||||
online_relays = helpers.get_active_relays(net)
|
online_relays = helpers.get_active_relays(net)
|
||||||
for inst in online_relays:
|
for r in online_relays:
|
||||||
inst.chanlimit = chanlimit
|
r.chanlimit = chanlimit
|
||||||
elif item == "security":
|
elif item == "security":
|
||||||
security = data[item][0]
|
security = data[item][0]
|
||||||
if security not in ["ssl", "plain"]:
|
if security not in ["ssl", "plain"]:
|
||||||
|
|
Loading…
Reference in New Issue