Skip to content

Commit

Permalink
Merge pull request #3619 from nirvn/processing_tinyfix
Browse files Browse the repository at this point in the history
[processing] fix missing argument when calling getMinCoveringExtent()
  • Loading branch information
volaya committed Oct 18, 2016
2 parents 89cc645 + 730b5b7 commit 1762c9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/core/parameters.py
Expand Up @@ -403,7 +403,7 @@ def fromScriptCode(self, line):

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
Expand Down

0 comments on commit 1762c9c

Please sign in to comment.