[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[libeufin] branch master updated: fix broken dictionary key
From: |
gnunet |
Subject: |
[libeufin] branch master updated: fix broken dictionary key |
Date: |
Fri, 24 Jan 2020 21:59:40 +0100 |
This is an automated email from the git hooks/post-receive script.
marcello pushed a commit to branch master
in repository libeufin.
The following commit(s) were added to refs/heads/master by this push:
new 3166699 fix broken dictionary key
3166699 is described below
commit 31666996b516a061a9ec105cf487c95abd3e787a
Author: Marcello Stanisci <address@hidden>
AuthorDate: Fri Jan 24 21:59:02 2020 +0100
fix broken dictionary key
---
sandbox/src/main/python/libeufin-cli | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/sandbox/src/main/python/libeufin-cli
b/sandbox/src/main/python/libeufin-cli
index 7b2cbb8..0c5b3cc 100755
--- a/sandbox/src/main/python/libeufin-cli
+++ b/sandbox/src/main/python/libeufin-cli
@@ -30,7 +30,7 @@ def ebics():
)
@click.pass_context
def native(ctx, sandbox_base_url):
- ctx.obj.update(bank_base_url=bank_base_url)
+ ctx.obj.update(sandbox_base_url=sandbox_base_url)
pass
@ebics.command(help="Restore private keys backup.")
@@ -332,7 +332,7 @@ def new_subscriber(obj, user_id, partner_id, system_id,
host_id, ebics_url):
)
def history(obj, user_id, start, end):
- url = urljoin(obj["bank_base_url"], f"/{user_id}/history")
+ url = urljoin(obj["sandbox_base_url"], f"/{user_id}/history")
print(url)
try:
resp = post(url, json=dict(start=start, end=end))
@@ -353,7 +353,7 @@ def history(obj, user_id, start, end):
)
def balance(obj, user_id):
- url = urljoin(obj["bank_base_url"], f"/{user_id}/balance")
+ url = urljoin(obj["sandbox_base_url"], f"/{user_id}/balance")
print(url)
try:
resp = get(url)
--
To stop receiving notification emails like this one, please contact
address@hidden.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [libeufin] branch master updated: fix broken dictionary key,
gnunet <=