Skip to content

Commit db4db59

Browse files
committedFeb 8, 2019
Fix travis
1 parent db06040 commit db4db59

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed
 

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -620,7 +620,6 @@ def runVacuum(self):
620620
""" run vacuum on the db """
621621
self._execute_and_commit("VACUUM")
622622

623-
624623
def addTableColumn(self, table, field_def):
625624
""" add a column to table """
626625

‎python/plugins/db_manager/dlg_table_properties.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def __init__(self, table, parent=None):
5151
self.db = self.table.database()
5252

5353
supportCom = self.db.supportsComment()
54-
if not supportCom :
54+
if not supportCom:
5555
self.tabs.removeTab(3)
5656

5757
m = TableFieldsModel(self)

0 commit comments

Comments
 (0)
Please sign in to comment.