mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-05 12:33:39 +02:00
Fix can_handle for Cybook Gen 3 and Opus.
This commit is contained in:
parent
5f883cc03a
commit
288b64529c
1 changed files with 4 additions and 2 deletions
|
|
@ -85,7 +85,8 @@ def can_handle(cls, device_info, debug=False):
|
|||
if islinux:
|
||||
if device_info[3] == 'Bookeen' and device_info[4] == 'Cybook Gen3':
|
||||
return True
|
||||
return False
|
||||
return False
|
||||
return True
|
||||
|
||||
|
||||
class CYBOOK_OPUS(CYBOOKG3):
|
||||
|
|
@ -119,4 +120,5 @@ def can_handle(cls, device_info, debug=False):
|
|||
if islinux:
|
||||
if device_info[3] == 'Bookeen':
|
||||
return True
|
||||
return False
|
||||
return False
|
||||
return True
|
||||
|
|
|
|||
Loading…
Reference in a new issue