Fix Cybook Nolimbook not being detected in linux and OS X.

Fixes #1464382 [device "Nolim +HD" is not recognized](https://bugs.launchpad.net/calibre/+bug/1464382)
This commit is contained in:
Kovid Goyal 2015-06-12 08:41:20 +05:30
parent 098365e35d
commit 25eb0e6100

View File

@ -133,5 +133,5 @@ class MUSE(CYBOOK):
@classmethod @classmethod
def can_handle(cls, device_info, debug=False): def can_handle(cls, device_info, debug=False):
if isunix: if isunix:
return device_info[3] == 'Bookeen' and device_info[4] in ('Cybook', 'Lev') return device_info[3] == 'Bookeen' and device_info[4] in ('Cybook', 'Lev', 'Nolimbook')
return True return True