Skip to content

Commit

Permalink
Merge pull request #9380 from Ailurupoda/patch-1
Browse files Browse the repository at this point in the history
[dbmanager] Fix LineEdit name error
  • Loading branch information
m-kuhn committed Mar 5, 2019
2 parents 534ff68 + 8602d8f commit 73db859
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/db_manager/dlg_import_vector.py
Expand Up @@ -376,7 +376,7 @@ def accept(self):
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()
Expand Down

0 comments on commit 73db859

Please sign in to comment.