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
(cherry-picked from e3bbc35)
  • Loading branch information
nyalldawson committed Apr 6, 2018
1 parent b5644dd commit 08d85bb
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 @@ -171,7 +171,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 08d85bb

Please sign in to comment.