From 28812919acc5c2c21090a3c0d0cb700ca310bb35 Mon Sep 17 00:00:00 2001 From: Sebastian Falbesoner Date: Sun, 23 Apr 2023 13:57:08 +0200 Subject: [PATCH] fix double "or" typo in burn parameter validation error message (#172) --- cashu/wallet/cli/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cashu/wallet/cli/cli.py b/cashu/wallet/cli/cli.py index c70a167..78a29e2 100644 --- a/cashu/wallet/cli/cli.py +++ b/cashu/wallet/cli/cli.py @@ -441,7 +441,7 @@ async def burn(ctx: Context, token: str, all: bool, force: bool, delete: str): await wallet.load_mint() if not (all or token or force or delete) or (token and all): print( - "Error: enter a token or use --all to burn all pending tokens, --force to check all tokens or" + "Error: enter a token or use --all to burn all pending tokens, --force to check all tokens " "or --delete with send ID to force-delete pending token from list if mint is unavailable." ) return