Skip to content

Commit

Permalink
[sextante] fixed problem in fix for #7348
Browse files Browse the repository at this point in the history
  • Loading branch information
volaya committed Mar 18, 2013
1 parent 4e29b6a commit 67f4c72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/sextante/gui/BatchProcessingDialog.py
Expand Up @@ -270,7 +270,7 @@ def finishAll(self):
def setParameterValueFromWidget(self, param, widget, alg = None):
if isinstance(param, (ParameterRaster, ParameterVector, ParameterTable, ParameterMultipleInput)):
value = widget.getText()
if unicode(value.strip()) == "":
if unicode(value).strip() == "":
value = None
return param.setValue(value)
elif isinstance(param, ParameterBoolean):
Expand Down

0 comments on commit 67f4c72

Please sign in to comment.