aboutsummaryrefslogtreecommitdiff
path: root/python_bindings_example.py
diff options
context:
space:
mode:
authorSzczepan Zalega <szczepan@nitrokey.com>2018-01-05 10:06:46 +0100
committerSzczepan Zalega <szczepan@nitrokey.com>2018-01-05 10:07:29 +0100
commit8cfabd53a7e784ef8c04bbfe20219398bda28ab1 (patch)
treec090d723c005649de01045e51a076242e590c1ef /python_bindings_example.py
parent5dc71535eaf5810712692d08a5948e74db297ec8 (diff)
downloadlibnitrokey-8cfabd53a7e784ef8c04bbfe20219398bda28ab1.tar.gz
libnitrokey-8cfabd53a7e784ef8c04bbfe20219398bda28ab1.tar.bz2
Fix typo
Signed-off-by: Szczepan Zalega <szczepan@nitrokey.com>
Diffstat (limited to 'python_bindings_example.py')
-rwxr-xr-xpython_bindings_example.py2
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"