Skip to content

Commit 2b0a53b

Browse files
committed
[processing] fixed fileFilter for file outputs
1 parent dc968ce commit 2b0a53b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/plugins/processing/core/outputs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ def getFileFilter(self, alg):
114114
if self.ext is None:
115115
return 'All files(*.*)'
116116
else:
117-
return '%s files(*.%s)' % self.ext
117+
return '%s files(*.%s)' % (self.ext, self.ext)
118118

119119
def getDefaultFileExtension(self, alg):
120120
return self.ext or 'file'

0 commit comments

Comments
 (0)