Skip to content

Commit e4d0f15

Browse files
committedMay 26, 2014
[processing] fixed #10364
1 parent 0d9fc50 commit e4d0f15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎python/plugins/processing/gui/OutputSelectionPanel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ def selectFile(self):
111111
selectedFileFilter = unicode(fileDialog.selectedNameFilter())
112112
if not fileName.lower().endswith(
113113
tuple(re.findall("\*(\.[a-z]{1,5})", fileFilter))):
114-
ext = re.search("\*(\.[a-z]{1,5})", selectedFilefilter)
114+
ext = re.search("\*(\.[a-z]{1,5})", selectedFileFilter)
115115
if ext:
116116
fileName += ext.group(1)
117117
self.text.setText(fileName)

0 commit comments

Comments
 (0)
Please sign in to comment.