From 0c3d4511f831d4cfd05584c148b2fb4c259b5221 Mon Sep 17 00:00:00 2001 From: Charles Haley <> Date: Wed, 23 Jun 2010 12:05:22 +0100 Subject: [PATCH] Fix problem where collections are not built if the user spells the db fields using uppercase letters. --- src/calibre/devices/prs505/driver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/devices/prs505/driver.py b/src/calibre/devices/prs505/driver.py index 5860826778..023416bdf2 100644 --- a/src/calibre/devices/prs505/driver.py +++ b/src/calibre/devices/prs505/driver.py @@ -145,7 +145,7 @@ class PRS505(USBMS): blists[i] = booklists[i] opts = self.settings() if opts.extra_customization: - collections = [x.strip() for x in + collections = [x.lower().strip() for x in opts.extra_customization.split(',')] else: collections = []