From 7366d9f7d4b725e449ac0f4b9e768495504fee48 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 24 Dec 2019 09:02:41 +0530 Subject: [PATCH] Add gui_name to some PocketBook drivers --- src/calibre/devices/eb600/driver.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/calibre/devices/eb600/driver.py b/src/calibre/devices/eb600/driver.py index 5aa6de5a91..739c56159e 100644 --- a/src/calibre/devices/eb600/driver.py +++ b/src/calibre/devices/eb600/driver.py @@ -324,6 +324,7 @@ class POCKETBOOK301(USBMS): class POCKETBOOK602(USBMS): name = 'PocketBook Pro 602/902 Device Interface' + gui_name = 'PocketBook' description = _('Communicate with the PocketBook 515/602/603/902/903/Pro 912 reader.') author = 'Kovid Goyal' supported_platforms = ['windows', 'osx', 'linux'] @@ -371,6 +372,7 @@ class POCKETBOOK360P(POCKETBOOK602): class POCKETBOOK701(USBMS): name = 'PocketBook 701 Device Interface' + gui_name = 'PocketBook' description = _('Communicate with the PocketBook 701') author = _('Kovid Goyal')