[DB_Manager GPKG] Fix logic inversion in GDAL 1.X vs GDAL 2.X cases

This commit is contained in:
Even Rouault 2016-10-24 17:01:58 +02:00
parent cc0ada9f11
commit f84826d58d

View File

@ -181,7 +181,7 @@ class GPKGDBConnector(DBConnector):
return DBConnector._execute(self, cursor, sql)
def _commit(self):
if not self.gdal2:
if self.gdal2:
return
try: