Skip to content

Commit 08d85bb

Browse files
committed
[processing] Fix incorrect error string in field mapper algorithm
(cherry-picked from e3bbc35)
1 parent b5644dd commit 08d85bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/plugins/processing/algs/qgis/FieldsMapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ def processFeature(self, feature, context, feedback):
171171
raise QgsProcessingException(
172172
self.tr(u'Evaluation error in expression "{}": {}')
173173
.format(expression.expression(),
174-
expression.parserErrorString()))
174+
expression.evalErrorString()))
175175
attributes.append(value)
176176
else:
177177
attributes.append(NULL)

0 commit comments

Comments
 (0)