View Single Post
Old 07-08-2015, 01:10 PM   #87
DiapDealer
Grand Sorcerer
DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.
 
DiapDealer's Avatar
 
Posts: 28,737
Karma: 206739468
Join Date: Jan 2010
Device: Nexus 7, Kindle Fire HD
Quote:
Originally Posted by Olivier_g View Post
Good morning,
I've the following message when I try to use ePub3-itizer_v031 (Sigil 0.8.7):

Code:
Traceback (most recent call last):
File "C:\Logiciels portables\Sigil\SigilPortable\App\Sigil\plugin_lau nchers\\python\launcher.py", line 135, in launch
self.exitcode = target_script.run(container)
File "C:\Users\AppData\Local\sigil-ebook\sigil\plugins\ePub3-itizer\plugin.py", line 151, in run
opfconv = Opf_Converter(opf2, spine_properties, manifest_properties)
File "C:\Users\AppData\Local\sigil-ebook\sigil\plugins\ePub3-itizer\opf_converter.py", line 66, in __init__
self._convertOpf()
File "C:\Users\AppData\Local\sigil-ebook\sigil\plugins\ePub3-itizer\opf_converter.py", line 218, in _convertOpf
props = self.props[idref]
AttributeError: 'Opf_Converter' object has no attribute 'props'
Error: 'Opf_Converter' object has no attribute 'props'
Can anyone help me ?

Looks like a typo in opf_converter.py on line 218 that only affects things under specific conditions.

Code:
props = self.props[idref]
should probably be:
Code:
props = self.sprops[idref]
But I'll let KevinH be the final arbiter on that.

If you're comfortable making changes to python source code, then feel free to try it (the plugins get installed in their own subdirectory of the plugins directory found Sigil's preferences location). If not, you'll need to wait for a fixed release of the plugin.

Last edited by DiapDealer; 07-08-2015 at 01:14 PM.
DiapDealer is offline   Reply With Quote