commit 32c92d2da7a7f6f77be93293a1a531b0979e7a2b
parent ad85d90d5cdf71e57401f4071316c84bb499a5bb
Author: MS <ms@taler.net>
Date: Fri, 15 Jan 2021 23:30:46 +0100
remove failing dereference
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/cli/bin/libeufin-cli b/cli/bin/libeufin-cli
@@ -218,7 +218,7 @@ def new_ebics_connection(
try:
resp = post(url, json=body, auth=auth.HTTPBasicAuth(obj.username, obj.password))
except Exception:
- print(f"Could not reach nexus at {url}: {resp.json()}")
+ print(f"Could not reach nexus at {url}")
exit(1)
tell_user(resp)