diff --git a/src/calibre/devices/bebook/driver.py b/src/calibre/devices/bebook/driver.py index 6709cf217c..dacce1ba31 100644 --- a/src/calibre/devices/bebook/driver.py +++ b/src/calibre/devices/bebook/driver.py @@ -35,12 +35,10 @@ class BEBOOK(USBMS): SUPPORTS_SUB_DIRS = True - FDI_LUNS = {'lun0':1, 'lun1':0, 'lun2':2} - def windows_sort_drives(self, drives): main = drives.get('main', None) card = drives.get('carda', None) - if card and main and card < main: + if card and main and card > main: drives['main'] = card drives['carda'] = main