From 9a110fb0d50a614b23738cec14a53365c443f35f Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 1 Sep 2012 14:55:26 +0530 Subject: [PATCH] ... --- src/calibre/devices/mtp/windows/driver.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/calibre/devices/mtp/windows/driver.py b/src/calibre/devices/mtp/windows/driver.py index aaadffbc68..92e9790734 100644 --- a/src/calibre/devices/mtp/windows/driver.py +++ b/src/calibre/devices/mtp/windows/driver.py @@ -21,7 +21,8 @@ from calibre.devices.mtp.base import MTPDeviceBase class ThreadingViolation(Exception): def __init__(self): - Exception.__init__(self, 'You cannot use the MTP driver from a thread other than the ' + Exception.__init__(self, + 'You cannot use the MTP driver from a thread other than the ' ' thread in which startup() was called') def same_thread(func):