From 8219b03f00a3b3d98dd449dc006e572c1884205a Mon Sep 17 00:00:00 2001 From: David Date: Fri, 12 May 2017 00:36:04 +1000 Subject: [PATCH] Fix ignored collections in Kobo Driver Had inconsistently mangled the case of the collections. Removed the lower() as it the case should be considered. --- src/calibre/devices/kobo/driver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/devices/kobo/driver.py b/src/calibre/devices/kobo/driver.py index a779532dbe..531c1cdc99 100644 --- a/src/calibre/devices/kobo/driver.py +++ b/src/calibre/devices/kobo/driver.py @@ -3063,7 +3063,7 @@ class KOBOTOUCH(KOBO): # Cache the collection from the options string. if not hasattr(self.opts, '_ignore_collections_names'): icn = self.get_pref('ignore_collections_names') - self.opts._ignore_collections_names = [x.lower().strip() for x in icn.split(',')] if icn else [] + self.opts._ignore_collections_names = [x.strip() for x in icn.split(',')] if icn else [] return self.opts._ignore_collections_names @property