[processing] Fixes #11388 - save vector file dialog does not show file ext

This commit is contained in:
Salvatore Larosa 2014-10-11 21:36:51 +02:00
parent 7813f6b094
commit 659cada5b6

View File

@ -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):