Skip to content

Commit

Permalink
[processing] fixed #10364
Browse files Browse the repository at this point in the history
  • Loading branch information
volaya committed May 26, 2014
1 parent 0d9fc50 commit e4d0f15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/gui/OutputSelectionPanel.py
Expand Up @@ -111,7 +111,7 @@ def selectFile(self):
selectedFileFilter = unicode(fileDialog.selectedNameFilter())
if not fileName.lower().endswith(
tuple(re.findall("\*(\.[a-z]{1,5})", fileFilter))):
ext = re.search("\*(\.[a-z]{1,5})", selectedFilefilter)
ext = re.search("\*(\.[a-z]{1,5})", selectedFileFilter)
if ext:
fileName += ext.group(1)
self.text.setText(fileName)
Expand Down

0 comments on commit e4d0f15

Please sign in to comment.