Navigation Menu

Skip to content

Commit

Permalink
[processing] fixed fileFilter for file outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
volaya committed Jul 22, 2014
1 parent dc968ce commit 2b0a53b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/core/outputs.py
Expand Up @@ -114,7 +114,7 @@ def getFileFilter(self, alg):
if self.ext is None:
return 'All files(*.*)'
else:
return '%s files(*.%s)' % self.ext
return '%s files(*.%s)' % (self.ext, self.ext)

def getDefaultFileExtension(self, alg):
return self.ext or 'file'
Expand Down

0 comments on commit 2b0a53b

Please sign in to comment.