From e4d0f1551173fc9105805a5d26293d2a45879efa Mon Sep 17 00:00:00 2001 From: Victor Olaya Date: Tue, 27 May 2014 00:16:17 +0200 Subject: [PATCH] [processing] fixed #10364 --- python/plugins/processing/gui/OutputSelectionPanel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/plugins/processing/gui/OutputSelectionPanel.py b/python/plugins/processing/gui/OutputSelectionPanel.py index 0f7925e74d8..11e84bba006 100644 --- a/python/plugins/processing/gui/OutputSelectionPanel.py +++ b/python/plugins/processing/gui/OutputSelectionPanel.py @@ -111,7 +111,7 @@ class OutputSelectionPanel(QWidget, Ui_widgetOutputSelect): 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)