From 4b0d8d5f6d951122ae753dd3e34b8e9e8621bf24 Mon Sep 17 00:00:00 2001 From: matejcik Date: Mon, 10 Feb 2020 16:22:48 +0100 Subject: [PATCH] python/trezorctl: tweak error message in get-session --- python/src/trezorlib/cli/trezorctl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/src/trezorlib/cli/trezorctl.py b/python/src/trezorlib/cli/trezorctl.py index f0c8830301..e8148a067f 100755 --- a/python/src/trezorlib/cli/trezorctl.py +++ b/python/src/trezorlib/cli/trezorctl.py @@ -255,7 +255,7 @@ def get_session(connect): client = connect() get_address(client, "Testnet", PASSPHRASE_TEST_PATH) if client.session_id is None: - raise click.ClickException("Passphrase not enabled, session ID not available.") + raise click.ClickException("Passphrase not enabled or firmware too old.") else: return client.session_id.hex()