We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32d6275 commit 1579a68Copy full SHA for 1579a68
python/plugins/processing/gui/OutputSelectionPanel.py
@@ -113,8 +113,8 @@ def selectFile(self):
113
fileName = unicode(files[0])
114
selectedFileFilter = unicode(fileDialog.selectedNameFilter())
115
if not fileName.lower().endswith(
116
- tuple(re.findall("\*(\.[a-z]{1,5})", fileFilter))):
117
- ext = re.search("\*(\.[a-z]{1,5})", selectedFileFilter)
+ tuple(re.findall("\*(\.[a-z]{1,10})", fileFilter))):
+ ext = re.search("\*(\.[a-z]{1,10})", selectedFileFilter)
118
if ext:
119
fileName += ext.group(1)
120
self.leText.setText(fileName)
0 commit comments