From 3afca6fdfc6c1b419b74bbcbe7a3a75a53475365 Mon Sep 17 00:00:00 2001 From: f321x Date: Fri, 25 Jul 2025 12:48:51 +0200 Subject: [PATCH] cli: fix typos * remove unnecessary ':' from serialize desc * fix typo in command subparser epilog --- electrum/commands.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/electrum/commands.py b/electrum/commands.py index 39a2f0f72..b64bc8805 100644 --- a/electrum/commands.py +++ b/electrum/commands.py @@ -502,7 +502,7 @@ class Commands(Logger): {"address": "tb1q4s8z6g5jqzllkgt8a4har94wl8tg0k9m8kv5zd", "value_sats": 990000} ] } - :arg:json:jsontx:Transaction in json + arg:json:jsontx:Transaction in json """ keypairs = {} inputs = [] # type: List[PartialTxInput] @@ -2338,7 +2338,7 @@ def get_parser(): description=cmd.description, help=cmd.short_description, formatter_class=argparse.RawDescriptionHelpFormatter, - epilog="Run 'electrum -h to see the list of global options", + epilog="Run 'electrum -h' to see the list of global options", ) for optname, default in zip(cmd.options, cmd.defaults): if optname in ['wallet_path', 'wallet', 'plugin']: