From 5c62b43d94548a4609fc1c3c1f3bd91a8819fb36 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 26 Jun 2010 10:09:27 -0600 Subject: [PATCH] Move iTunes driver to the bottom of the list so it does't interfere with device detection for people that have iphones and an ereader plugged in --- src/calibre/customize/builtins.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/customize/builtins.py b/src/calibre/customize/builtins.py index 9c13e0062e..5ca1b2f131 100644 --- a/src/calibre/customize/builtins.py +++ b/src/calibre/customize/builtins.py @@ -499,7 +499,6 @@ plugins += [ ] # Order here matters. The first matched device is the one used. plugins += [ - ITUNES, HANLINV3, HANLINV5, BLACKBERRY, @@ -551,6 +550,7 @@ plugins += [ FOLDER_DEVICE_FOR_CONFIG, AVANT, MENTOR, + ITUNES, ] plugins += [x for x in list(locals().values()) if isinstance(x, type) and \ x.__name__.endswith('MetadataReader')]