display pycoin not found error message

This commit is contained in:
avirgovi 2022-03-16 15:42:10 +01:00
parent bb16dfdcf8
commit e35c9c7b4a

View File

@ -324,7 +324,8 @@ def get_pubkey(subpath):
try:
from pycoin.key.BIP32Node import BIP32Node
except Exception:
raise click.Abort("pycoin must be installed, not found.")
click.echo("pycoin must be installed, not found.", err=True)
sys.exit(1)
with get_device() as dev: