View Single Post
Old 11-14-2014, 08:05 AM   #13
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: 27,548
Karma: 193191846
Join Date: Jan 2010
Device: Nexus 7, Kindle Fire HD
Quote:
Originally Posted by KevinH View Post
- collects any epub:type attributes to help extend nav (landmarks) in the future
Code:
if len(etypes) > 0:
            epub_types[mid] = " ".join(etypes)
That join is failing (line 99-ish: plugin.py) whenever epub:types are encountered because etypes is a list of tuples that is created on line 229 of the same file.

Suggest just storing the list of tuples in the epub_types dict until future implementation.
DiapDealer is online now   Reply With Quote