From d160f8e8c36bf996f7e16cb1516deccd255ac8b3 Mon Sep 17 00:00:00 2001 From: Charles Haley <> Date: Thu, 17 Jun 2010 18:42:26 +0100 Subject: [PATCH] Fix bug preventing saving of the option (extra not) --- src/calibre/devices/usbms/deviceconfig.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/devices/usbms/deviceconfig.py b/src/calibre/devices/usbms/deviceconfig.py index 9f40a07dd3..5edefff743 100644 --- a/src/calibre/devices/usbms/deviceconfig.py +++ b/src/calibre/devices/usbms/deviceconfig.py @@ -61,7 +61,7 @@ class DeviceConfig(object): proxy['use_subdirs'] = config_widget.use_subdirs() if not cls.MUST_READ_METADATA: proxy['read_metadata'] = config_widget.read_metadata() - if not cls.SUPPORTS_USE_AUTHOR_SORT: + if cls.SUPPORTS_USE_AUTHOR_SORT: proxy['use_author_sort'] = config_widget.use_author_sort() if cls.EXTRA_CUSTOMIZATION_MESSAGE: ec = unicode(config_widget.opt_extra_customization.text()).strip()