From efc7bb05e7464df24f7cf31476e27a74c7ccdcd8 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 7 Apr 2012 10:22:46 +0530 Subject: [PATCH] Fix #975518 (add plugin to calibre) --- src/calibre/devices/teclast/driver.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/calibre/devices/teclast/driver.py b/src/calibre/devices/teclast/driver.py index 625c53ffb4..ba20acb07c 100644 --- a/src/calibre/devices/teclast/driver.py +++ b/src/calibre/devices/teclast/driver.py @@ -57,7 +57,8 @@ class PICO(NEWSMY): gui_name = 'Pico' description = _('Communicate with the Pico reader.') - WINDOWS_MAIN_MEM = 'USBDISK__USER' + VENDOR_NAME = ['TECLAST', 'IMAGIN', 'LASER-'] + WINDOWS_MAIN_MEM = ['USBDISK__USER', 'EB720'] EBOOK_DIR_MAIN = 'Books' FORMATS = ['EPUB', 'FB2', 'TXT', 'LRC', 'PDB', 'PDF', 'HTML', 'WTXT']