Skip to content

Commit dea558b

Browse files
author
LOMENEDE Jean-Daniel
committedMay 2, 2017
fix error message in merge algorithm
1 parent 6e38c1d commit dea558b

File tree

1 file changed

+1
-1
lines changed
  • python/plugins/processing/algs/qgis

1 file changed

+1
-1
lines changed
 

‎python/plugins/processing/algs/qgis/Merge.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def processAlgorithm(self, context, feedback):
8989
if (dfield.type() != sfield.type()):
9090
raise GeoAlgorithmExecutionException(
9191
self.tr('{} field in layer {} has different '
92-
'data type than in other layers.'))
92+
'data type than in other layers.'.format(sfield.name(), layerSource)))
9393

9494
if not found:
9595
fields.append(sfield)

0 commit comments

Comments
 (0)
Please sign in to comment.