Fix LineEdit name error

This commit is contained in:
Corentin.F 2019-03-05 09:59:28 +01:00 committed by GitHub
parent 534ff68bbc
commit 8602d8fd97
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -376,7 +376,7 @@ class DlgImportVector(QDialog, Ui_Dialog):
supportCom = self.db.supportsComment()
if self.chkCom.isEnabled() and self.chkCom.isChecked() and supportCom:
# using connector executing COMMENT ON TABLE query (with editCome.text() value)
com = self.editCome.text()
com = self.editCom.text()
self.db.connector.commentTable(schema, table, com)
self.db.connection().reconnect()