From 5e3b5fc7352c00d7193cceaafab60eb5e282b4dd Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 17 Jan 2016 21:22:39 +0530 Subject: [PATCH] ... --- src/calibre/devices/winusb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/devices/winusb.py b/src/calibre/devices/winusb.py index e35c139c6e..5a506892f7 100644 --- a/src/calibre/devices/winusb.py +++ b/src/calibre/devices/winusb.py @@ -494,7 +494,7 @@ def get_removable_drives(debug=False): # {{{ if drive_type == DRIVE_REMOVABLE or (drive_type == DRIVE_FIXED and 'usbstor' in devpath.lower()): ans[drive_letter] = candidates if debug: - prints('Found volume with device path:', devpath, ' Drive letter:', drive_letter) + prints('Found volume with device path:', devpath, ' Drive letter:', drive_letter, 'Is removable:', drive_letter in ans) return ans # }}}