From cb70e7ad490a00b609c13865ee6a6cc0916a34f1 Mon Sep 17 00:00:00 2001 From: Mark Veidemanis Date: Tue, 19 Apr 2022 21:03:40 +0100 Subject: [PATCH] Dump the account JSON as the content is variable --- handler/ux/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/handler/ux/commands.py b/handler/ux/commands.py index fccf2ea..2a583bf 100644 --- a/handler/ux/commands.py +++ b/handler/ux/commands.py @@ -776,7 +776,7 @@ class IRCCommands(object): accounts = tx.sinks.nordigen.get_all_account_info() for name, accounts in accounts.items(): for account in accounts: - msg(f"{name} {account['account_id']} {account['details']} {account['currency']}") + msg(dumps(account)) class transactions(object): name = "transactions"