Skip to content

Commit 958f0ee

Browse files
committedFeb 10, 2016
[BUGFIX] remove trAlgorithm fromUnion.py followup b81604c
1 parent cdd4aed commit 958f0ee

File tree

1 file changed

+2
-2
lines changed
  • python/plugins/processing/algs/qgis

1 file changed

+2
-2
lines changed
 

‎python/plugins/processing/algs/qgis/Union.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,8 +197,8 @@ def processAlgorithm(self, progress):
197197
self.tr('Feature exception while computing intersection'))
198198

199199
def defineCharacteristics(self):
200-
self.name, self.i18n_name = self.trAlgorithm('Union')
201-
self.group, self.i18n_group = self.trAlgorithm('Vector overlay tools')
200+
self.name = 'Union'
201+
self.group = 'Vector overlay tools'
202202
self.addParameter(ParameterVector(Union.INPUT,
203203
self.tr('Input layer'), [ParameterVector.VECTOR_TYPE_ANY]))
204204
self.addParameter(ParameterVector(Union.INPUT2,

0 commit comments

Comments
 (0)
Please sign in to comment.