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

This commit is contained in:
Kovid Goyal 2010-06-26 10:09:27 -06:00
parent d96204698a
commit 5c62b43d94

View File

@ -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')]