From 07079b6ba1de4ea095f0c15d21f636e4e9e5cc30 Mon Sep 17 00:00:00 2001 From: Pol Henarejos Date: Thu, 30 May 2024 19:19:02 +0200 Subject: [PATCH] Add descriptive message. Signed-off-by: Pol Henarejos --- tools/pico-hsm-tool.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/pico-hsm-tool.py b/tools/pico-hsm-tool.py index 7d7813f..91840be 100644 --- a/tools/pico-hsm-tool.py +++ b/tools/pico-hsm-tool.py @@ -464,6 +464,8 @@ def phy(picohsm, args): ret = picohsm.phy(args.subcommand, val) if (ret): print(f'Current value: {hexlify(ret)}') + else: + print('Command executed successfully. Please, restart your Pico Key.') def main(args): sys.stderr.buffer.write(b'Pico HSM Tool v1.12\n')