From 2a406cb55dc1a6054b1aa4e6a95c1d2aa06a0b2c Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 7 May 2018 21:54:55 +0530 Subject: [PATCH] Fix Bookeen Saga not being recognized on macOS/Linux. Fixes #1769681 [New device "Bookeen Saga" not detected](https://bugs.launchpad.net/calibre/+bug/1769681) --- src/calibre/devices/cybook/driver.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/calibre/devices/cybook/driver.py b/src/calibre/devices/cybook/driver.py index 9c86178363..f534e937f3 100644 --- a/src/calibre/devices/cybook/driver.py +++ b/src/calibre/devices/cybook/driver.py @@ -79,9 +79,9 @@ class ORIZON(CYBOOK): EBOOK_DIR_MAIN = EBOOK_DIR_CARD_A = 'Digital Editions' EXTRA_CUSTOMIZATION_MESSAGE = [ - _('Card A folder') + ':::

' + - _('Enter the folder where the books are to be stored when sent to the ' - 'memory card. This folder is prepended to any send to device template') + '

', + _('Card A folder') + ':::

' + _( + 'Enter the folder where the books are to be stored when sent to the ' + 'memory card. This folder is prepended to any send to device template') + '

', ] EXTRA_CUSTOMIZATION_DEFAULT = [EBOOK_DIR_CARD_A] @@ -136,5 +136,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', 'Letto', 'Nolim') + return device_info[3] == 'Bookeen' and device_info[4] in ('Cybook', 'Lev', 'Nolimbook', 'Letto', 'Nolim', 'Saga') return True