Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #4484 from lejedi76/processing_errormsg_mergevecto…
…rlayers_fix

[processing] fix error message in merge algorithm
  • Loading branch information
alexbruy committed May 2, 2017
2 parents 144492d + dea558b commit b342acc
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 b342acc

Please sign in to comment.