We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fca922 commit 953f977Copy full SHA for 953f977
python/plugins/processing/gui/BatchOutputSelectionPanel.py
@@ -92,7 +92,7 @@ def showSelectionDialog(self):
92
ParameterMultipleInput)):
93
s = unicode(widget.getText())
94
s = os.path.basename(s)
95
- s = s[:s.rfind('.')]
+ s = os.path.splitext()[0]
96
elif isinstance(param, ParameterBoolean):
97
s = str(widget.currentIndex() == 0)
98
elif isinstance(param, ParameterSelection):
0 commit comments