Hi,
Just ran into an exception when using the plugin today:
Version: v021 on Sigil 0.8.2 on OpenSuSE x64
File: opf_converter.py, line 396~401
Code:
if self.title_cnt==1:
nattr = {}
nattr["refines"] = "#" + id
nattr["property"] = "title-type"
outtags.append(["meta", nattr, "main"]) <-- variable nattr not initialized
return outtags
I guess the append() should be inside the if block, right?