summaryrefslogtreecommitdiff
path: root/cli
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2021-08-07 13:57:25 +0200
committerFlorian Dold <florian@dold.me>2021-08-07 13:57:25 +0200
commit6cc7ea10d00305f8271e93f36f95cf05fabec105 (patch)
tree4095cbce0c0c9ef452d53afe72e30b56cb61b433 /cli
parent7185215e9e3578127afd95a190ec4290ee591589 (diff)
downloadlibeufin-6cc7ea10d00305f8271e93f36f95cf05fabec105.tar.gz
libeufin-6cc7ea10d00305f8271e93f36f95cf05fabec105.tar.bz2
libeufin-6cc7ea10d00305f8271e93f36f95cf05fabec105.zip
cli tweaks
Diffstat (limited to 'cli')
-rwxr-xr-xcli/bin/libeufin-cli10
1 files changed, 5 insertions, 5 deletions
diff --git a/cli/bin/libeufin-cli b/cli/bin/libeufin-cli
index 0370344d..111a01ca 100755
--- a/cli/bin/libeufin-cli
+++ b/cli/bin/libeufin-cli
@@ -644,7 +644,7 @@ def task_schedule(
check_response_status(resp)
-@accounts.command(help="Shows the status of one task")
+@accounts.command(help="Show the status of a task")
@click.argument("account-name")
@click.option("--task-name", help="Name of the task", required=True)
@click.pass_obj
@@ -663,7 +663,7 @@ def task_status(obj, account_name, task_name):
check_response_status(resp)
-@accounts.command(help="Deletes one task")
+@accounts.command(help="Delete a task")
@click.argument("account-name")
@click.option("--task-name", help="Name of the task", required=True)
@click.pass_obj
@@ -682,7 +682,7 @@ def task_delete(obj, account_name, task_name):
check_response_status(resp)
-@accounts.command(help="Shows all the active tasks")
+@accounts.command("list-tasks", help="List all the configured tasks")
@click.argument("account-name")
@click.pass_obj
def tasks_show(obj, account_name):
@@ -697,7 +697,7 @@ def tasks_show(obj, account_name):
check_response_status(resp)
-@accounts.command(help="show accounts belonging to calling user")
+@accounts.command(help="Show accounts belonging to calling user")
@click.pass_obj
def show(obj):
url = urljoin(obj.nexus_base_url, "/bank-accounts")
@@ -711,7 +711,7 @@ def show(obj):
check_response_status(resp)
-@accounts.command(help="prepare payment debiting 'account-name'")
+@accounts.command(help="Prepare payment initiation debiting the account.")
@click.option(
"--creditor-iban", help="IBAN that will receive the payment", required=True
)