Skip to content

Commit

Permalink
Minor fix in ModelerParametersDialog.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
volaya committed Oct 14, 2012
1 parent 7748c57 commit cdb9abd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/sextante/modeler/ModelerParametersDialog.py
Expand Up @@ -678,7 +678,7 @@ def setParamValue(self, param, widget):
name = self.getSafeNameForHarcodedParameter(param)
value = AlgorithmAndParameter(AlgorithmAndParameter.PARENT_MODEL_ALGORITHM, name)
self.params[param.name] = value
self.values[name] = str(widget.getText())
self.values[name] = str(widget.text())
return True

def getSafeNameForHarcodedParameter(self, param):
Expand Down

0 comments on commit cdb9abd

Please sign in to comment.