08532a
From 7e6e424ed579c53a0767ba71eb47345ae1e472ca Mon Sep 17 00:00:00 2001
08532a
From: minus <github@mnus.de>
08532a
Date: Sat, 12 Mar 2016 12:18:44 +0100
08532a
Subject: [PATCH] fixed Python 3 compatibility for Yubikey 4
08532a
08532a
---
08532a
 yubico/yubikey_4_usb_hid.py | 2 +-
08532a
 1 file changed, 1 insertion(+), 1 deletion(-)
08532a
08532a
diff --git a/yubico/yubikey_4_usb_hid.py b/yubico/yubikey_4_usb_hid.py
08532a
index 31c6f5d..b44bb90 100644
08532a
--- a/yubico/yubikey_4_usb_hid.py
08532a
+++ b/yubico/yubikey_4_usb_hid.py
08532a
@@ -104,7 +104,7 @@ def _read_capabilities(self):
08532a
         frame = yubikey_frame.YubiKeyFrame(command=SLOT.YK4_CAPABILITIES)
08532a
         self._device._write(frame)
08532a
         response = self._device._read_response()
08532a
-        r_len = ord(response[0])
08532a
+        r_len = yubico_util.ord_byte(response[0])
08532a
 
08532a
         # 1 byte length, 2 byte CRC.
08532a
         if not yubico_util.validate_crc16(response[:r_len+3]):