SONY driver: Handle mistaken upper casing of filed names when user specifies what fields to build colelctions from

This commit is contained in:
Kovid Goyal 2010-06-23 08:26:26 -06:00
parent 44be78af3d
commit d44154243e

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 = []