Skip to content

Commit

Permalink
[processing] Fix incorrect error string in field mapper algorithm
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Apr 3, 2018
1 parent d5617b8 commit e3bbc35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/FieldsMapper.py
Expand Up @@ -136,7 +136,7 @@ def processFeature(self, feature, context, feedback):
raise QgsProcessingException(
self.tr(u'Evaluation error in expression "{}": {}')
.format(expression.expression(),
expression.parserErrorString()))
expression.evalErrorString()))
attributes.append(value)
else:
attributes.append(NULL)
Expand Down

0 comments on commit e3bbc35

Please sign in to comment.