[processing] Fix crash in ExecuteSQL.py

This commit is contained in:
Hugo Mercier 2016-02-26 11:10:39 +01:00
parent 493d13dc44
commit dccca45468

View File

@ -146,5 +146,5 @@ class ExecuteSQL(GeoAlgorithm):
if geometry_type != 1:
outFeat.setGeometry(inFeat.geometry())
writer.addFeature(outFeat)
progress.setPersentage(int(current * total))
progress.setPercentage(int(current * total))
del writer