Skip to content

Commit 953f977

Browse files
committed
fixed #10986
1 parent 5fca922 commit 953f977

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/plugins/processing/gui/BatchOutputSelectionPanel.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def showSelectionDialog(self):
9292
ParameterMultipleInput)):
9393
s = unicode(widget.getText())
9494
s = os.path.basename(s)
95-
s = s[:s.rfind('.')]
95+
s = os.path.splitext()[0]
9696
elif isinstance(param, ParameterBoolean):
9797
s = str(widget.currentIndex() == 0)
9898
elif isinstance(param, ParameterSelection):

0 commit comments

Comments
 (0)