Merge pull request #3619 from nirvn/processing_tinyfix

[processing] fix missing argument when calling getMinCoveringExtent()
This commit is contained in:
volaya 2016-10-18 08:30:55 +02:00 committed by GitHub
commit 1762c9ca3c

View File

@ -403,7 +403,7 @@ class ParameterExtent(Parameter):
def evaluate(self, alg):
if self.optional and not bool(self.value):
self.value = self.getMinCoveringExtent()
self.value = self.getMinCoveringExtent(alg)
def getMinCoveringExtent(self, alg):
first = True