Skip to content

Commit

Permalink
[processing] fix missing argument when calling getMinCoveringExtent()
Browse files Browse the repository at this point in the history
  • Loading branch information
nirvn committed Oct 18, 2016
1 parent 2835cad commit 730b5b7
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 730b5b7

Please sign in to comment.