Because LexData.__int__ already sets its docname to "untitled", the check at xrenner_xrenner.py:76 always fails and the docname is never set when xrenner is run from within a Python session. Since docname isn't set, the call to depedit later on fails because it uses self.docname, which is still unset. If xrenner is run independently, a filename will be found and this problem doesn't occur.
Because LexData.__int__ already sets its
docname
to "untitled", the check atxrenner_xrenner.py:76
always fails and thedocname
is never set when xrenner is run from within a Python session. Sincedocname
isn't set, the call to depedit later on fails because it usesself.docname
, which is still unset. If xrenner is run independently, a filename will be found and this problem doesn't occur.