View Single Post
Old 05-07-2011, 02:21 AM   #11
Little Frank
Junior Member
Little Frank began at the beginning.
 
Posts: 6
Karma: 10
Join Date: May 2011
Device: nook, Nokia N800 with FBreader
Once more, please.

This
subprocess.check_call(['ebook-convert', sys.argv[1], sys.argv[2], --cover eu.jpg])
blows up,
this
subprocess.check_call(['ebook-convert', sys.argv[1], sys.argv[2], "--cover eu.jpg"])
died
this
Ptotal = " --cover eu.jpg "
subprocess.check_call(['ebook-convert', sys.argv[1], sys.argv[2], Ptotal])
produced the default cover,
this
subprocess.check_call(['ebook-convert', sys.argv[1], sys.argv[2] + " --cover eu.jpg"])
died, and I was laughing before I tried it;
subprocess.check_call(['ebook-convert', sys.argv[1], sys.argv[2], """ --cover eu.jpg"""])
generated the default cover.
OK, I give, what does replacing the cover look like?
Little Frank is offline   Reply With Quote