Fix redist command

master
Mark Veidemanis 3 years ago
parent 0343140328
commit baaf32a2e0
Signed by: m
GPG Key ID: 5ACFCEED46C0904F

@ -102,10 +102,10 @@ class IRCCommands(object):
@staticmethod @staticmethod
def run(cmd, spl, length, authed, msg, agora, revolut, tx, notify): def run(cmd, spl, length, authed, msg, agora, revolut, tx, notify):
for x in agora.redist_countries(): for x in agora.redist_countries():
if x["success"]: if x[0]["success"]:
msg(f"{x[0]['response']['data']['message']}: {x[1]}") msg(f"{x[0]['response']['data']['message']}: {x[1]}")
else: else:
msg(dumps(x["response"])) msg(dumps(x[0]["response"]))
class stripdupes(object): class stripdupes(object):
name = "stripdupes" name = "stripdupes"

Loading…
Cancel
Save