Skip to content

Commit b379e93

Browse files
committedOct 8, 2015
Remove the extra argument to getConsoleCommands()
getConsoleCommands takes only 1 arg. The extra arg in the method definition causes an error when running the algorithm
1 parent 35444c4 commit b379e93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎python/plugins/processing/algs/gdal/rasterize_over.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def defineCharacteristics(self):
5454
self.addParameter(ParameterRaster(self.INPUT_RASTER,
5555
self.tr('Existing raster layer'), False))
5656

57-
def getConsoleCommands(self, progress):
57+
def getConsoleCommands(self):
5858
inLayer = self.getParameterValue(self.INPUT)
5959
ogrLayer = self.ogrConnectionString(inLayer)[1:-1]
6060
inRasterLayer = self.getParameterValue(self.INPUT_RASTER)

0 commit comments

Comments
 (0)
Please sign in to comment.