Skip to content

Commit

Permalink
[processing] fixed autofill in batch processing interface
Browse files Browse the repository at this point in the history
Fixes #11435
  • Loading branch information
volaya committed Oct 18, 2014
1 parent f4489c2 commit fad44d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/gui/BatchOutputSelectionPanel.py
Expand Up @@ -92,7 +92,7 @@ def showSelectionDialog(self):
ParameterMultipleInput)):
s = unicode(widget.getText())
s = os.path.basename(s)
s = os.path.splitext()[0]
s = os.path.splitext(s)[0]
elif isinstance(param, ParameterBoolean):
s = str(widget.currentIndex() == 0)
elif isinstance(param, ParameterSelection):
Expand Down

0 comments on commit fad44d0

Please sign in to comment.