gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[libeufin] branch master updated: fix person name option (CLI)


From: gnunet
Subject: [libeufin] branch master updated: fix person name option (CLI)
Date: Wed, 04 May 2022 21:59:22 +0200

This is an automated email from the git hooks/post-receive script.

ms pushed a commit to branch master
in repository libeufin.

The following commit(s) were added to refs/heads/master by this push:
     new ea304fd0 fix person name option (CLI)
ea304fd0 is described below

commit ea304fd0bcca2ee1e965185e939dca637a07eb3e
Author: ms <ms@taler.net>
AuthorDate: Wed May 4 21:59:12 2022 +0200

    fix person name option (CLI)
---
 cli/bin/libeufin-cli | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/cli/bin/libeufin-cli b/cli/bin/libeufin-cli
index e40c8f1a..89037c36 100755
--- a/cli/bin/libeufin-cli
+++ b/cli/bin/libeufin-cli
@@ -1275,14 +1275,14 @@ def sandbox_demobank_info(obj, bank_account):
 )
 @click.option(
     "--name",
-    default=False,
+    default="",
     help="Person name",
 )
 @click.pass_obj
 def sandbox_demobank_register(obj, public, name):
     url = obj.access_api_url ("/testing/register")
     req = dict(username=obj.username, password=obj.password, isPublic=public)
-    if name:
+    if name != "":
         req.update(name=name)
     try:
         resp = post(

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]