Skip to content

Commit 68c541b

Browse files
authoredFeb 7, 2019
Update connector.py
1 parent 8ed7971 commit 68c541b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎python/plugins/db_manager/db_plugins/postgis/connector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -742,7 +742,7 @@ def renameTable(self, table, new_table):
742742

743743
self._commit()
744744

745-
def commentTable(self, schema, tablename, comment=None, db):
745+
def commentTable(self, schema, tablename, db, comment=None):
746746
if comment == None:
747747
db.connector._execute(None, 'COMMENT ON TABLE "{0}"."{1}" IS NULL;'.format(schema, tablename))
748748
else:

0 commit comments

Comments
 (0)
Please sign in to comment.