Skip to content

Commit

Permalink
[processing] Fixes #11388 - save vector file dialog does not show fil…
Browse files Browse the repository at this point in the history
…e ext
  • Loading branch information
slarosa committed Oct 11, 2014
1 parent 7813f6b commit 659cada
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/core/outputs.py
Expand Up @@ -253,7 +253,7 @@ class OutputVector(Output):
def getFileFilter(self, alg):
exts = dataobjects.getSupportedOutputVectorLayerExtensions()
for i in range(len(exts)):
self.tr('%s files(*.%s)', 'OutputVector') % (exts[i].upper(), exts[i].lower())
exts[i] = self.tr('%s files (*.%s)', 'OutputVector') % (exts[i].upper(), exts[i].lower())
return ';;'.join(exts)

def getDefaultFileExtension(self, alg):
Expand Down

0 comments on commit 659cada

Please sign in to comment.