Skip to content

Commit

Permalink
fixed #6362 (should check that does not break other things and model …
Browse files Browse the repository at this point in the history
…executes correctly)
  • Loading branch information
volaya committed Oct 2, 2012
1 parent 1549f09 commit 6548e2e
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions python/plugins/sextante/modeler/ModelerParametersDialog.py
Expand Up @@ -428,12 +428,13 @@ def setParamValues(self):
return False
for output in outputs:
if output.hidden:
continue
name= unicode(self.valueItems[output.name].text())
if name.strip()!="" and name != ModelerParametersDialog.ENTER_NAME:
self.outputs[output.name]=name
self.outputs[output.name] = None
else:
self.outputs[output.name] = None
name= unicode(self.valueItems[output.name].text())
if name.strip()!="" and name != ModelerParametersDialog.ENTER_NAME:
self.outputs[output.name]=name
else:
self.outputs[output.name] = None
return True


Expand Down

0 comments on commit 6548e2e

Please sign in to comment.