Merge pull request #26 from ospalh/fix-type-answer-in-comment
Check for self.typedAnswer only after it has been set.
This commit is contained in:
commit
649d2b88ba
@ -377,10 +377,10 @@ Please run Tools>Maintenance>Empty Cards""")
|
|||||||
""" % (self.typeFont, self.typeSize), buf)
|
""" % (self.typeFont, self.typeSize), buf)
|
||||||
|
|
||||||
def typeAnsAnswerFilter(self, buf):
|
def typeAnsAnswerFilter(self, buf):
|
||||||
if not self.typeCorrect or not self.typedAnswer:
|
|
||||||
return re.sub(self.typeAnsPat, "", buf)
|
|
||||||
# tell webview to call us back with the input content
|
# tell webview to call us back with the input content
|
||||||
self.web.eval("_getTypedText();")
|
self.web.eval("_getTypedText();")
|
||||||
|
if not self.typeCorrect or not self.typedAnswer:
|
||||||
|
return re.sub(self.typeAnsPat, "", buf)
|
||||||
# munge correct value
|
# munge correct value
|
||||||
parser = HTMLParser.HTMLParser()
|
parser = HTMLParser.HTMLParser()
|
||||||
cor = stripHTML(self.mw.col.media.strip(self.typeCorrect))
|
cor = stripHTML(self.mw.col.media.strip(self.typeCorrect))
|
||||||
|
Loading…
Reference in New Issue
Block a user