Fix problem where collections are not built if the user spells the db fields using uppercase letters.

This commit is contained in:
Charles Haley 2010-06-23 12:05:22 +01:00
parent 18ea000dc6
commit 0c3d4511f8

View File

@ -145,7 +145,7 @@ class PRS505(USBMS):
blists[i] = booklists[i] blists[i] = booklists[i]
opts = self.settings() opts = self.settings()
if opts.extra_customization: if opts.extra_customization:
collections = [x.strip() for x in collections = [x.lower().strip() for x in
opts.extra_customization.split(',')] opts.extra_customization.split(',')]
else: else:
collections = [] collections = []