View Single Post
Old 09-23-2008, 03:34 PM   #14
nrapallo
GuteBook/Mobi2IMP Creator
nrapallo ought to be getting tired of karma fortunes by now.nrapallo ought to be getting tired of karma fortunes by now.nrapallo ought to be getting tired of karma fortunes by now.nrapallo ought to be getting tired of karma fortunes by now.nrapallo ought to be getting tired of karma fortunes by now.nrapallo ought to be getting tired of karma fortunes by now.nrapallo ought to be getting tired of karma fortunes by now.nrapallo ought to be getting tired of karma fortunes by now.nrapallo ought to be getting tired of karma fortunes by now.nrapallo ought to be getting tired of karma fortunes by now.nrapallo ought to be getting tired of karma fortunes by now.
 
nrapallo's Avatar
 
Posts: 2,958
Karma: 2530691
Join Date: Dec 2007
Location: Toronto, Canada
Device: REB1200 EBW1150 Device: T1 NSTG iLiad_v2 NC Device: Asus_TF Next1 WPDN
Quote:
Originally Posted by GeneS View Post
Thanks, Nick.
It does work very well. I thought maybe I had missed something in the threads
If you were using, say, the PrcConverter.py, then you could try replacing lines 88-89:
Code:
        path, shelf = os.path.split(impserve.config.shelf_dirs[0])
        shutil.move(fname+ext, shelf+'/impserve-'+fname+ext)
with
Code:
        shelf = impserve.config.shelf_dirs[0]
        shutil.copy(fname+ext, shelf+'/impserve-'+fname+ext)
        os.remove(fname+ext)
If you're adventurous and don't want to wait until later, that is. Though, I have to be honest, I haven't tested this so be careful, very careful, ..... Boo!...did I get you?

Last edited by nrapallo; 09-23-2008 at 08:06 PM.
nrapallo is offline   Reply With Quote