summaryrefslogtreecommitdiff
path: root/sandbox
diff options
context:
space:
mode:
authorMarcello Stanisci <stanisci.m@gmail.com>2020-01-29 09:23:41 +0100
committerMarcello Stanisci <stanisci.m@gmail.com>2020-01-29 09:23:41 +0100
commit7ce7b83e2dbbaff530e74b4b5006b742471d59f8 (patch)
treee1f27770da89fea08578491c0b76c0e7b1ef78f7 /sandbox
parentd3521c623c46918adf121ec2dad3b0d33498bad0 (diff)
downloadlibeufin-7ce7b83e2dbbaff530e74b4b5006b742471d59f8.tar.gz
libeufin-7ce7b83e2dbbaff530e74b4b5006b742471d59f8.tar.bz2
libeufin-7ce7b83e2dbbaff530e74b4b5006b742471d59f8.zip
avoid NULL primary key
Diffstat (limited to 'sandbox')
-rw-r--r--sandbox/build.gradle1
-rwxr-xr-xsandbox/src/main/python/libeufin-cli4
2 files changed, 2 insertions, 3 deletions
diff --git a/sandbox/build.gradle b/sandbox/build.gradle
index b1fdee38..90f52435 100644
--- a/sandbox/build.gradle
+++ b/sandbox/build.gradle
@@ -50,7 +50,6 @@ dependencies {
application {
-
mainClassName = "tech.libeufin.sandbox.MainKt"
}
diff --git a/sandbox/src/main/python/libeufin-cli b/sandbox/src/main/python/libeufin-cli
index 7ef46252..27ebe682 100755
--- a/sandbox/src/main/python/libeufin-cli
+++ b/sandbox/src/main/python/libeufin-cli
@@ -342,7 +342,7 @@ def sync(obj, customer_id):
print(resp.content.decode("utf-8"))
-@ebics.command(help="Retrieve all subscribers in the system")
+@ebics.command(help="Retrieve all the customers managed by Nexus")
@click.pass_obj
def subscribers(obj):
@@ -350,7 +350,7 @@ def subscribers(obj):
try:
resp = get(url)
except Exception:
- print("Could not reach the bank")
+ print("Could not reach Nexus at {}".format(url))
return
print(resp.content.decode("utf-8"))