BUGFIX: QLineEdit doesn't have .toPlainText()

This commit is contained in:
Erez Volk 2020-01-05 07:54:45 +02:00
parent f4649b515f
commit b4facdf650

View file

@ -181,7 +181,7 @@ you can enter it here. Use \\t to represent tab."""
self.importer.allowHTML = self.frm.allowHTML.isChecked()
self.mw.pm.profile["allowHTML"] = self.importer.allowHTML
if self.frm.tagModifiedCheck.isChecked():
self.importer.tagModified = self.frm.tagModifiedTag.toPlainText()
self.importer.tagModified = self.frm.tagModifiedTag.text()
self.mw.pm.profile["tagModified"] = self.importer.tagModified
did = self.deck.selectedId()
if did != self.importer.model["did"]: