From 743f5c831116932fc6a84b4bf075ff4566a2987c Mon Sep 17 00:00:00 2001 From: ThomasV Date: Thu, 29 May 2025 15:44:53 +0200 Subject: [PATCH] CLI: remove -W shortcut --- electrum/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum/commands.py b/electrum/commands.py index 5a9c9adb6..91f1b4053 100644 --- a/electrum/commands.py +++ b/electrum/commands.py @@ -2190,7 +2190,7 @@ def get_parser(): if optname in ['wallet_path', 'wallet', 'plugin']: continue if optname == 'password': - p.add_argument("-W", "--password", dest='password', help="Wallet password. Use '--password :' if you want a prompt.") + p.add_argument("--password", dest='password', help="Wallet password. Use '--password :' if you want a prompt.") continue help = cmd.arg_descriptions.get(optname) if not help: