Skip to content

Commit

Permalink
fixed #10986
Browse files Browse the repository at this point in the history
  • Loading branch information
volaya committed Oct 3, 2014
1 parent 5fca922 commit 953f977
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 = s[:s.rfind('.')]
s = os.path.splitext()[0]
elif isinstance(param, ParameterBoolean):
s = str(widget.currentIndex() == 0)
elif isinstance(param, ParameterSelection):
Expand Down

0 comments on commit 953f977

Please sign in to comment.