From 158fe691289f031cd324aefdde9e390e1bd23998 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 14 Aug 2015 21:11:13 +0530 Subject: [PATCH] Driver for Adlibris Letto on OS X and Linux. Fixes #1484585 [Can't connect to Adlibris Letto Frontlight](https://bugs.launchpad.net/calibre/+bug/1484585) --- src/calibre/devices/cybook/driver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/devices/cybook/driver.py b/src/calibre/devices/cybook/driver.py index 9305096439..f36def1fb9 100644 --- a/src/calibre/devices/cybook/driver.py +++ b/src/calibre/devices/cybook/driver.py @@ -133,5 +133,5 @@ class MUSE(CYBOOK): @classmethod def can_handle(cls, device_info, debug=False): if isunix: - return device_info[3] == 'Bookeen' and device_info[4] in ('Cybook', 'Lev', 'Nolimbook') + return device_info[3] == 'Bookeen' and device_info[4] in ('Cybook', 'Lev', 'Nolimbook', 'Letto') return True