From 01511731e3cc08a396ec7bfdd694bb4269849309 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 4 Jan 2015 20:55:06 +0530 Subject: [PATCH] Fix a typo that prevented the Cybook Muse from being detected on some computers. Fixes #1407435 [Calibre doesn't detect my Cybook Muse Frontlight](https://bugs.launchpad.net/calibre/+bug/1407435) --- src/calibre/devices/cybook/driver.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/calibre/devices/cybook/driver.py b/src/calibre/devices/cybook/driver.py index b759831d42..c1ccd30848 100644 --- a/src/calibre/devices/cybook/driver.py +++ b/src/calibre/devices/cybook/driver.py @@ -113,8 +113,8 @@ class ORIZON(CYBOOK): class MUSE(CYBOOK): - name = 'Cybook Orizon Device Interface' - gui_name = 'Orizon' + name = 'Cybook Muse Device Interface' + gui_name = 'Muse' description = _('Communicate with the Cybook Muse eBook reader.') author = 'Kovid Goyal'