From a28847970c1f8bdaf7f38026d93a8e60dbc8b9af Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 2 Oct 2012 10:25:08 +0530 Subject: [PATCH] Kindle driver: Do not place files in sub-directories when sending books to the device. The new Kindle Paperwhite apparently does not like files in sub-directories --- src/calibre/devices/kindle/driver.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/calibre/devices/kindle/driver.py b/src/calibre/devices/kindle/driver.py index 7821631e85..7db4f4be17 100644 --- a/src/calibre/devices/kindle/driver.py +++ b/src/calibre/devices/kindle/driver.py @@ -294,6 +294,8 @@ class KINDLE2(KINDLE): PRODUCT_ID = [0x0002, 0x0004] BCD = [0x0100] + SUPPORTS_SUB_DIRS = False # Apparently the Paperwhite doesn't like files placed in subdirectories + SUPPORTS_SUB_DIRS_FOR_SCAN = True EXTRA_CUSTOMIZATION_MESSAGE = [ _('Send page number information when sending books') +