View Single Post
Old 06-06-2008, 05:29 PM   #37
kovidgoyal
creator of calibre
kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.
 
kovidgoyal's Avatar
 
Posts: 45,395
Karma: 27756918
Join Date: Oct 2006
Location: Mumbai, India
Device: Various
I thought of another possible point of failure. Once again try running calibre-debug and at the green prompt:

Code:
import wmi
from calibre.devices.prs505.driver import PRS505
c = wmi.WMI()
for drive in c.Win32_DiskDrive():
    print str(drive.PNPDeviceID)
    if PRS505.is_device(str(drive.PNPDeviceID)):
        print drive.Partitions
        if drive.Partitions == 0: continue
        partitions = drive.associators("Win32_DiskDriveToDiskPartition")
        print partitions
kovidgoyal is offline   Reply With Quote