Skip to content

Commit 53a7010

Browse files
committed
[processing] correct error message (fix #15511)
(cherry picked from commit d393734)
1 parent 687fdad commit 53a7010

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

python/plugins/processing/algs/qgis/SinglePartsToMultiparts.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,9 @@ def processAlgorithm(self, progress):
9898

9999
del writer
100100
else:
101-
raise GeoAlgorithmExecutionException(self.tr('Invalid unique ID field'))
101+
raise GeoAlgorithmExecutionException(
102+
self.tr('At least two features must have same attribute '
103+
'value! Please choose another field...'))
102104

103105
def singleToMultiGeom(self, wkbType):
104106
try:

0 commit comments

Comments
 (0)