Skip to content

Commit

Permalink
fix error message in merge algorithm
Browse files Browse the repository at this point in the history
  • Loading branch information
LOMENEDE Jean-Daniel committed May 2, 2017
1 parent 6e38c1d commit dea558b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/Merge.py
Expand Up @@ -89,7 +89,7 @@ def processAlgorithm(self, context, feedback):
if (dfield.type() != sfield.type()):
raise GeoAlgorithmExecutionException(
self.tr('{} field in layer {} has different '
'data type than in other layers.'))
'data type than in other layers.'.format(sfield.name(), layerSource)))

if not found:
fields.append(sfield)
Expand Down

0 comments on commit dea558b

Please sign in to comment.