summaryrefslogtreecommitdiff
path: root/cli
diff options
context:
space:
mode:
authorMS <ms@taler.net>2021-01-15 23:30:46 +0100
committerMS <ms@taler.net>2021-01-15 23:30:46 +0100
commit32c92d2da7a7f6f77be93293a1a531b0979e7a2b (patch)
tree778d82c5c7d729c032f9b4ecbbd6c7e014cd1dd3 /cli
parentad85d90d5cdf71e57401f4071316c84bb499a5bb (diff)
downloadlibeufin-32c92d2da7a7f6f77be93293a1a531b0979e7a2b.tar.gz
libeufin-32c92d2da7a7f6f77be93293a1a531b0979e7a2b.tar.bz2
libeufin-32c92d2da7a7f6f77be93293a1a531b0979e7a2b.zip
remove failing dereference
Diffstat (limited to 'cli')
-rwxr-xr-xcli/bin/libeufin-cli2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/bin/libeufin-cli b/cli/bin/libeufin-cli
index 262169fe..4516df97 100755
--- 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)