Fix variable shadowing

This commit is contained in:
Mark Veidemanis 2022-08-14 15:43:48 +01:00
parent 2022ab985b
commit 8c809ad444
Signed by: m
GPG Key ID: 5ACFCEED46C0904F
1 changed files with 2 additions and 2 deletions

View File

@ -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"]: