diff options
author | Szczepan Zalega <szczepan@nitrokey.com> | 2018-01-05 10:06:46 +0100 |
---|---|---|
committer | Szczepan Zalega <szczepan@nitrokey.com> | 2018-01-05 10:07:29 +0100 |
commit | 8cfabd53a7e784ef8c04bbfe20219398bda28ab1 (patch) | |
tree | c090d723c005649de01045e51a076242e590c1ef | |
parent | 5dc71535eaf5810712692d08a5948e74db297ec8 (diff) | |
download | libnitrokey-8cfabd53a7e784ef8c04bbfe20219398bda28ab1.tar.gz libnitrokey-8cfabd53a7e784ef8c04bbfe20219398bda28ab1.tar.bz2 |
Fix typo
Signed-off-by: Szczepan Zalega <szczepan@nitrokey.com>
-rwxr-xr-x | python_bindings_example.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python_bindings_example.py b/python_bindings_example.py index 6f1e56d..6ddcbc4 100755 --- a/python_bindings_example.py +++ b/python_bindings_example.py @@ -125,7 +125,7 @@ test_data = [ 1284755224, 1094287082, 137359152, 1726969429, 1640338314, 868254676, 1918287922, 82162583, 673399871, 645520489, ] -print('Getting HOTP code from Nitrokey Pro (RFC test, 8 digits): ') +print('Getting HOTP code from Nitrokey Stick (RFC test, 8 digits): ') for i in range(10): hotp_slot_1_code = get_hotp_code(libnitrokey, 1) correct_str = "correct!" if hotp_slot_1_code == str(test_data[i])[-8:] else "not correct" |