From 456171337e43a554699874ccdd0a04f76203437f Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 22 Mar 2013 15:03:26 +0530 Subject: [PATCH] ... --- src/calibre/devices/misc.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/calibre/devices/misc.py b/src/calibre/devices/misc.py index d8a8ed1871..423b68f37b 100644 --- a/src/calibre/devices/misc.py +++ b/src/calibre/devices/misc.py @@ -420,9 +420,9 @@ class WAYTEQ(USBMS): # Ordered list of supported formats FORMATS = ['epub', 'mobi', 'prc', 'fb2', 'txt', 'pdf', 'html', 'rtf', 'chm', 'djvu', 'doc'] - VENDOR_ID = [0x05e3, 0x0c45] - PRODUCT_ID = [0x0726, 0x0184] - BCD = [0x0222, 0x0100] + VENDOR_ID = [0x05e3, 0x05e8] + PRODUCT_ID = [0x0726, 0x0728] + BCD = [0x0222] EBOOK_DIR_MAIN = 'Documents' SCAN_FROM_ROOT = True @@ -433,7 +433,7 @@ class WAYTEQ(USBMS): def get_gui_name(self): try: - if self.detected_device.idVendor == 0x0c45: + if self.detected_device.idVendor == 0x05e8: return 'SPC Dickens' except Exception: pass