View Single Post
  #15  
Old 05-31-2010, 11:33 AM
any ANONYMOUS forum user any ANONYMOUS forum user is offline
any user of the forum who preferred to post anonymously
 
Join Date: Aug 2011
Location: Server of stream-recorder.com
Posts: 211
any ANONYMOUS forum user is on a distinguished road
Default

Re: Barnes and Noble: ignoblekey.py error: Could not locate B&N Reader installation


Quote:
Originally Posted by mtngr1 View Post
Okay, found it! When I was doing a search, I was searching under user, and I must I've only installed it under my Documents and Settings. It's found in C:\Documents and Settings\USER\Application Data\Barnes & Noble\BNDesktopReader\ClientAPI
Your "ClientAPI.db" doesn't use underscores, so you should replace
Code:
dbpath = glob.glob(os.path.join(bndir, 'ClientAPI_*.db'))
with
Code:
dbpath = glob.glob(os.path.join(bndir, 'ClientAPI*.db'))
(remove underscore) as mentioned above.
Reply With Quote