Quote:
Originally Posted by frecklpwr
Thanks. Tried that and got this
~/downloads christina$ python kindlefix.py Natural-583. prc F#####BY
kindlefix.py:61: FutureWarning: hex/oct constants > sys.maxint will return positive values in Python 2.4 and up
if off1==0xFFFFFFFF or off1==0:
Traceback (most recent call last):
File "kindlefix.py", line 2, in ?
import prc, sys, struct
ImportError: No module named prc
|
Not sure if this is a type or a cut and paste. But, if it is a paste it looks like you have an extra space in your file name.
python kindlefix.py Natural-583. prc F#####BY
should be:
python kindlefix.py Natural-583.prc F#####BY
If there really is a space in the file name use:
python kindlefix.py 'Natural-583. prc' F#####BY
BOb