From 7789a9a40ead7e8c5f151bb5f18e6e6f9a48694e Mon Sep 17 00:00:00 2001 From: ibraheem-opentensor Date: Wed, 28 Aug 2024 15:55:41 -0700 Subject: [PATCH] Updates mnemonic command output --- bittensor_wallet/wallet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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("")