View Single Post
  #1  
Old 05-20-2010, 01:50 PM
PLBriggs PLBriggs is offline
Junior Member
 
Join Date: May 2010
Posts: 1
PLBriggs is on a distinguished road
Unhappy

Getting "Unsupported version of kindle for pc" with unswindle v6rc1 and k4pc v1.1.0


Folks:

I'm experiencing the same error message about "unsupported version of kindle for pc" using unswindle.pyw v6-rc1. My current version of K4PC, v1.1.0, is dated 04-May-2010.

The code, obviously, is:
def _get_hexdigest(self):
path = self._exepath
sha1 = hashlib.sha1()
with open(path, 'rb') as f:
data = f.read(4096)
while data:
sha1.update(data)
data = f.read(4096)
hexdigest = sha1.hexdigest()
if not PC1KeyGrabber.supported_version(hexdigest):
raise UnswindleError("Unsupported version of Kindle For PC")
return hexdigest
Regards.......Peter
Reply With Quote