URI: 
       tcommands: explicitly mention "?"/":" magic chars for "create" cmd - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 6aa81a8f56309e91f097f78a2420ec569a5716ab
   DIR parent 790c889483490198e9224fc31a447815f96ffad1
  HTML Author: SomberNight <somber.night@protonmail.com>
       Date:   Sat,  9 Mar 2019 16:47:19 +0100
       
       commands: explicitly mention "?"/":" magic chars for "create" cmd
       
       related: #5185
       
       Diffstat:
         M electrum/commands.py                |       9 ++++++---
       
       1 file changed, 6 insertions(+), 3 deletions(-)
       ---
   DIR diff --git a/electrum/commands.py b/electrum/commands.py
       t@@ -138,7 +138,9 @@ class Commands:
        
            @command('')
            def create(self, passphrase=None, password=None, encrypt_file=True, segwit=False):
       -        """Create a new wallet"""
       +        """Create a new wallet.
       +        If you want to be prompted for an argument, type '?' or ':' (concealed)
       +        """
                d = create_new_wallet(path=self.config.get_wallet_path(),
                                      passphrase=passphrase,
                                      password=password,
       t@@ -154,8 +156,9 @@ class Commands:
            def restore(self, text, passphrase=None, password=None, encrypt_file=True):
                """Restore a wallet from text. Text can be a seed phrase, a master
                public key, a master private key, a list of bitcoin addresses
       -        or bitcoin private keys. If you want to be prompted for your
       -        seed, type '?' or ':' (concealed) """
       +        or bitcoin private keys.
       +        If you want to be prompted for an argument, type '?' or ':' (concealed)
       +        """
                d = restore_wallet_from_text(text,
                                             path=self.config.get_wallet_path(),
                                             passphrase=passphrase,