From 9ee3e926c0cf29189194fd4c3edb74c91f5c2309 Mon Sep 17 00:00:00 2001 From: John Schember Date: Fri, 18 Dec 2009 23:35:19 -0500 Subject: [PATCH] Jetbook driver: add FB2 format. --- src/calibre/devices/jetbook/driver.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/calibre/devices/jetbook/driver.py b/src/calibre/devices/jetbook/driver.py index b1e0b17fb9..a55e76155f 100644 --- a/src/calibre/devices/jetbook/driver.py +++ b/src/calibre/devices/jetbook/driver.py @@ -20,13 +20,13 @@ from calibre.ebooks.metadata import authors_to_string, string_to_authors class JETBOOK(USBMS): name = 'Ectaco JetBook Device Interface' description = _('Communicate with the JetBook eBook reader.') - author = _('James Ralston') + author = 'James Ralston' supported_platforms = ['windows', 'osx', 'linux'] # Ordered list of supported formats # Be sure these have an entry in calibre.devices.mime - FORMATS = ['epub', 'mobi', 'prc', 'txt', 'rtf', 'pdf'] + FORMATS = ['epub', 'mobi', 'prc', 'fb2', 'txt', 'rtf', 'pdf'] VENDOR_ID = [0x0525] PRODUCT_ID = [0xa4a5]