Skip to content

Commit

Permalink
[processing] Fix DeleteColumn output hint
Browse files Browse the repository at this point in the history
the dropped fields are discarded, the modeller get the rest, as expected
  • Loading branch information
lynxlynxlynx authored and nyalldawson committed Sep 10, 2018
1 parent d849dd6 commit d54bd1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/DeleteColumn.py
Expand Up @@ -66,7 +66,7 @@ def displayName(self):
return self.tr('Drop field(s)')

def outputName(self):
return self.tr('Fields dropped')
return self.tr('Remaining fields')

def prepareAlgorithm(self, parameters, context, feedback):
self.fields_to_delete = self.parameterAsFields(parameters, self.COLUMNS, context)
Expand Down

0 comments on commit d54bd1a

Please sign in to comment.