Skip to content

Commit

Permalink
Merge pull request #9382 from qgis/backport-9380-on-release-3_6
Browse files Browse the repository at this point in the history
Backport #9380 on release-3_6
  • Loading branch information
m-kuhn committed Mar 5, 2019
2 parents e470b6c + 6c42628 commit c410349
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 c410349

Please sign in to comment.