diff --git a/bittensor_wallet/wallet.py b/bittensor_wallet/wallet.py index 71031df..cdb82b2 100644 --- a/bittensor_wallet/wallet.py +++ b/bittensor_wallet/wallet.py @@ -59,7 +59,7 @@ def display_mnemonic_msg(keypair: Keypair, key_type: str): print( "You can use the mnemonic to recreate the key in case it gets lost. The command to use to regenerate the key using this mnemonic is:" ) - print("btcli w regen_{} --mnemonic {}".format(key_type, mnemonic)) + print('btcli w regen-{} --mnemonic "{}"'.format(key_type, mnemonic)) print("")