Fix Booken Lev e-book reader not being detected in OS X and Linux. Fixes #1417325 [My ereader not is detect in Calibre 2.18 (Binary package)](https://bugs.launchpad.net/calibre/+bug/1417325)

This commit is contained in:
Kovid Goyal 2015-02-03 13:14:13 +05:30
parent 29f4e41fba
commit 7a611660d7

View File

@ -133,6 +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] == 'Cybook'
return device_info[3] == 'Bookeen' and device_info[4] in ('Cybook', 'Lev')
return True