mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-15 00:04:00 -04:00
fix error message in merge algorithm
This commit is contained in:
parent
6e38c1d692
commit
dea558b824
@ -89,7 +89,7 @@ class Merge(GeoAlgorithm):
|
|||||||
if (dfield.type() != sfield.type()):
|
if (dfield.type() != sfield.type()):
|
||||||
raise GeoAlgorithmExecutionException(
|
raise GeoAlgorithmExecutionException(
|
||||||
self.tr('{} field in layer {} has different '
|
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:
|
if not found:
|
||||||
fields.append(sfield)
|
fields.append(sfield)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user