Skip to content

Commit e3bbc35

Browse files
committed
[processing] Fix incorrect error string in field mapper algorithm
1 parent d5617b8 commit e3bbc35

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
@@ -136,7 +136,7 @@ def processFeature(self, feature, context, feedback):
136136
raise QgsProcessingException(
137137
self.tr(u'Evaluation error in expression "{}": {}')
138138
.format(expression.expression(),
139-
expression.parserErrorString()))
139+
expression.evalErrorString()))
140140
attributes.append(value)
141141
else:
142142
attributes.append(NULL)

0 commit comments

Comments
 (0)