Skip to content

Commit 8602d8f

Browse files
authoredMar 5, 2019
Fix LineEdit name error
1 parent 534ff68 commit 8602d8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎python/plugins/db_manager/dlg_import_vector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ def accept(self):
376376
supportCom = self.db.supportsComment()
377377
if self.chkCom.isEnabled() and self.chkCom.isChecked() and supportCom:
378378
# using connector executing COMMENT ON TABLE query (with editCome.text() value)
379-
com = self.editCome.text()
379+
com = self.editCom.text()
380380
self.db.connector.commentTable(schema, table, com)
381381

382382
self.db.connection().reconnect()

0 commit comments

Comments
 (0)
Please sign in to comment.