Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[DB Manager / GPKG] Fix COMMIT with GDAL 2 (fix #16174)
  • Loading branch information
rouault committed Nov 9, 2017
1 parent 505e365 commit e744633
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/db_manager/db_plugins/gpkg/connector.py
Expand Up @@ -184,7 +184,7 @@ def _execute(self, cursor, sql):
return DBConnector._execute(self, cursor, sql)

def _commit(self):
if self.gdal2:
if self.connection is None:
return

try:
Expand Down

0 comments on commit e744633

Please sign in to comment.